section#intro {
	align-items: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.subheadline {
	color: var(--color-light);
	font-size: 28px;
	font-weight: 300;
	line-height: 42px;
	margin-bottom: 45px;
	text-align: center;
}

.option-title {
	align-items: center;
	color: var(--color-secondary);
	display: flex;
	font-family: var(--font-text);
	font-size: 20px;
	font-weight: bpöd;
	justify-content: center;
	line-height: 30px;
	position: relative;
	text-align: center;
}

.option-details {
	margin: 0;
	padding: 0 25px;
	text-align: center;
}

.option-details:first-of-type {
	margin-top: 10px;
}

.option-details:last-of-type {
	margin-bottom: 30px;
}

.option-title::before,
.option-title::after {
	background-color: var(--color-medium-dark);
	content: "";
	flex: 1;
	height: 2px;
	margin: 0 20px;
}


section#tellMoreSection {
	display: flex;
	justify-content: center;
	position: relative;
	width: 100%;
	z-index: 101;
}

section#tellMoreSection svg {
	height: 35px;
	stroke: var(--color-dark);
	width: 35px;
}

#tellMore {
	align-items: center;
	background-color: var(--color-primary);
	border: none;
	border-radius: 50%;
	display: flex;
	height: 42px;
	justify-content: center;
	padding: 8px;
	width: 42px;
}

#tellMore:hover, #tellMore:focus {
	background-color: var(--color-primary);
}

/* TERMINAL */

section#terminal {
	background-color: var(--color-dark);
	display: flex;
	justify-content: center;
	padding: 10px 0 30px;
}

.terminal-container {
	background-color: #2b3440;
	border-radius: var(--border-radius);
	display: flex;
	flex-direction: column;
	max-height: 60vh;
	max-width: 650px;
	outline: none;
	padding: 20px 5px 20px 20px;
	width: 90%;
}

.highlight-terminal {
	-webkit-box-shadow: 6px 5px 41px -22px rgba(194, 232, 18, 1);
	-moz-box-shadow: 6px 5px 41px -22px rgba(194, 232, 18, 1);
	box-shadow: 6px 5px 41px -22px rgba(194, 232, 18, 1);
}

.terminal-header {
	background-color: #2b3440;
	border-top-left-radius: var(--border-radius);
	border-top-right-radius: var(--border-radius);
	display: flex;
	justify-content: space-between;
	padding-bottom: 20px;
}

.terminal-buttons {
	display: flex;
	gap: 10px;
}

.terminal-button {
	background-color: #5f6771;
	border-radius: 50%;
	height: 12px;
	width: 12px;
}

.terminal-body {
	color: var(--color-light);
	font-size: 18px;
	overflow-x: hidden;
	overflow-y: auto;
	padding-right: 20px;

}

.code-lines-default .code-line {
	display: none;
}

.code-line {
	margin: 6px 0;
	padding-left: 30px;
	position: relative;
	text-wrap: wrap;
	white-space: pre-wrap;
}

.code-line .command {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 5px;
	padding: 0 6px;
}

.code-line code, .code-line::before {
	font-family: "Terminal", monospace;
}

.code-line::before {
	content: attr(data-prefix);
	display: inline-block;
	left: 0;
	margin-right: 10px;
	opacity: .5;
	position: absolute;
	width: 20px;
}

.code-line.primary, .code-line.yellow::before {
	color: var(--color-primary);
}

.code-line.yellow, .code-line.yellow::before {
	color: oklch(0.8471 0.199 83.87);
}

.code-line.success, .code-line.success::before {
	color: oklch(0.648 0.15 160);
}

.code-line.error, .code-line.error::before {
	color: #e63946;
}

.code-line.grey {
	color: #6c757d;
}

.code-line a {
	color: var(--color-primary);
}

.code-input {
	margin-top: 18px;
	position: relative;
}

.code-input input {
	background-color: transparent;
	border: none;
	color: var(--color-primary);
	font-family: "Terminal", monospace;
	font-size: 18px;
	outline: none;
	width: 100%;
}

.code-input input::placeholder {
	color: var(--color-light);
	opacity: .5;
}

#submitMobile {
	align-items: center;
	background-color: var(--color-dark);
	border: none;
	border: 1px solid var(--color-primary);
	border-radius: 5px;
	color: var(--color-primary);
	cursor: pointer;
	display: flex;
	display: none;
	justify-content: center;
	padding: 6px 12px;
	position: absolute;
	right: 0;
	top: 0;
}

/* END TERMINAL */



section#aboutMe {
	background-color: var(--color-medium-dark);
	padding: 40px 0;
	position: relative;
	transform: translateY(-25px);
}


.projectLink {
	background-color: var(--color-dark);
	border-radius: var(--border-radius);
	cursor: pointer;
	display: block;
	display: flex;
	height: 290px;
	justify-content: space-between;
	margin: 80px auto 30px;
	max-width: 750px;
	overflow: hidden;
	text-align: center;
	width: 90%;
}

.projectLink img {
	height: 100%;
	object-fit: cover;
	width: 100%
}

.projectLink .txt {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 30px 30px 25px;
}

.projectLink h2 {
	color: var(--color-light);
	font-family: var(--font-display);
	font-size: 2.8rem;
	font-weight: 500;
	margin: 0;
}

.projectLink a {
	background-color: var(--color-secondary);
	border: none;
	border-radius: 50px;
	color: var(--color-dark);
	cursor: pointer;
	display: inline-block;
	font-family: var(--font-text);
	font-size: 18px;
	font-weight: 500;
	outline: none;
	padding: 12px 20px;
	text-align: center;
	text-decoration: none;
	transition: all .3s;
}

.projectLink a:hover, .projectLink a:focus {
	background-color: var(--color-primary);
}

.projectLink p {
	color: var(--color-light);
	font-family: var(--font-text);
	font-size: 18px;
	font-weight: 300;
	line-height: 30px;
	margin: 4px 0 20px;
	text-align: left;
}



@media(max-width: 700px) {

	section#intro {
		padding: 0 25px;
	}

	.subheadline {
		font-size: 24px;
		line-height: 27px;
		margin: 8px 0 18px;
	}

	#burger-button {
		display: block;
	}

	/* Main menu positionning */
	.main-nav {
		bottom: 0;
		left: 0;
		opacity: 0;
		position: absolute;
		right: 0;
		text-align: center;
		top: 0;
		transition: all .375s;
		visibility: hidden;
		z-index: -1;
	}

	.main-nav.is-open {
		opacity: 1;
		visibility: visible;
		z-index: 201;
	}

	/* Yellow band effect */
	.main-nav::before {
		background: var(--color-primary);
		bottom: 0;
		content: '';
		left: 0;
		position: absolute;
		right: -15px;
		top: 0;
		transform: skew(-14deg) translateX(-120%);
		transform-origin: 0 0;
		transition: all .275s .1s;
	}

	.main-nav.is-open::before {
		transform: skew(-14deg) translateX(0);
	}

	/* Skewing effect on menu links */
	.main-nav ul {
		align-items: flex-end;
		display: inline-flex;
		flex-direction: column;
		height: 93%;
		justify-content: center;
		transform: translateX(-18%) skew(-16deg);
	}

	.main-nav li {
		display: block;
		margin: .5rem 0;
		text-align: right;
		transform: skew(16deg);
	}

	.main-nav a {
		opacity: 0;
		transform: translateY(-10px);
	}

	.main-nav.is-open a {
		opacity: 1;
		transform: translateY(0);
	}


	/* Decoration */
	.main-nav ul,
	.main-nav li {
		list-style: none;
		padding: 0;
	}

	.main-nav a {
		color: var(--color-dark);
		display: block;
		font-family: var(--font-text);
		font-size: 1.4em;
		font-size: 18px;
		font-weight: bold;
		padding: 12px 0;
		text-decoration: none;
	}

	.main-nav a:hover {
		color: var(--color-dark);
	}

	.open-main-nav {
		background: none;
		border: 0;
		cursor: pointer;
		padding: 25px 12px 12px;
		position: absolute;
		right: 10px;
		top: 15px;
		z-index: 1000;
	}

	.open-main-nav:focus {
		outline: none;
	}

	.burger {
		background: var(--color-medium);
		display: block;
		height: 2px;
		margin: 0 auto;
		position: relative;
		transition: all .275s;
		width: 32px;
	}

	.burger:after,
	.burger:before {
		background: var(--color-medium);
		content: '';
		display: block;
		height: 100%;
		transition: all .275s;
	}

	.burger:after {
		transform: translateY(-10px);
	}

	.burger:before {
		transform: translateY(-16px);
	}

	/* Toggle State part */
	.is-open .burger {
		background: var(--color-dark);
		transform: skew(5deg) translateY(-8px) rotate(-45deg);
	}

	.is-open .burger:before {
		background: var(--color-dark);
		transform: translateY(0px) skew(-10deg) rotate(75deg);
	}

	.is-open .burger:after {
		opacity: 0;
		transform: translateY(-12px) translateX(10px) skew(-20deg);
	}

	.main-title {
		line-height: 4.8rem;
	}

	section#aboutMe {
		padding-top: 20px;
	}

	.projectLink {
		flex-direction: column-reverse;
		height: auto;
		margin: 45px auto 30px;
		max-width: 450px;
	}

	.projectLink img {
		height: 260px;
		width: 100%;
	}

	.projectLink h2 {
		text-align: left;
	}
}

@media(max-width: 750px) {
	.code-input .code-line {
		margin-right: 55px;
	}

	#submitMobile {
		display: block;
	}

	.terminal-container {
		max-height: 70vh;
		padding-left: 10px;
	}

	.terminal-body {
		padding-right: 10px;

	}
}