section h2 {
	font-size: calc(var(--font-size) * 1.75);
	line-height: calc(var(--font-size) * 1.75);
}

#introduction {
	position: relative;
	overflow: hidden;
}
#introduction::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/img/content/code.jpg');
	background-size: cover;
	background-position: left center;
	background-repeat: no-repeat;
	opacity: .1;
	z-index: -1;
}
#introduction .grid {
	position: relative;
}
#introduction-text {
	width: 60%;
	font-size: calc(var(--font-size) * 1.5);
	line-height: calc(var(--font-size) * var(--line-height) * 1.5);
	text-shadow: 0 0 8px #101010;
}
@media (min-width: 600px) {
	#introduction-text {
		font-size: calc(var(--font-size) * 2);
		line-height: calc(var(--font-size) * var(--line-height) * 2);
	}
}
@media (min-width: 900px) {
	#introduction-text {
		width: 100%;
		font-size: calc(var(--font-size) * 3);
		line-height: calc(var(--font-size) * var(--line-height) * 3);
	}
}
#selfportrait-container {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
}
@media (min-width: 900px) {
	#selfportrait-container {
		position: relative;
		width: 100%;
		aspect-ratio: 1 / 1.2;
		z-index: 0;
	}
}
#selfportrait-container #selfportrait-grayscale, #selfportrait-container #selfportrait-colored {
	position: absolute;
	top: 50%;
	left: 50%;
	width: auto;
	z-index: 1;
	transition: opacity .3s;
	transform: translate(-50%, -50%);
}
#selfportrait-container #selfportrait-colored {
	opacity: 0;
}
#selfportrait-container:hover #selfportrait-colored {
	opacity: 1;
}


#frontend_backend {
	position: relative;
}
#frontend_backend *::selection {
	background-color: var(--color-accentHover);
}
#frontend, #backend {
	padding: var(--font-size);
	aspect-ratio: 16 / 10;
	background-repeat: no-repeat;
	background-size: auto 75%;
	background-position: center;
	background-color: var(--color-accent);
	color: var(--color-primary);
	transition: background-size .3s ease-in-out;
}
@media (min-width: 600px) {
	#frontend, #backend {
		padding: calc(var(--font-size) * 2);
	}
}
#frontend:hover, #backend:hover {
	background-size: auto 85%;
}
#frontend {
	background-image: url('/img/content/frontend.svg');
}
#backend {
	background-color: var(--color-accent400);
	background-image: url('/img/content/backend.svg');
}
@media (min-width: 900px) {
	#frontend {
		border-radius: 0 48px 48px 0;
	}
	#backend {
		border-radius: 48px 0 0 48px;
	}
}
#and_divider {
	position: absolute;
	inset: 50% 0 0 50%;
	transform: translate(-50%,-50%);
	width: fit-content;
    height: fit-content;
	font-size: 25vw;
	line-height: 25vw;
	color: var(--color-primary);
	text-shadow: 0 0 8px #101010;
	z-index: 1;
}
@media (min-width: 900px) {
	#and_divider {
		font-size: 16vw;
		line-height: 16vw;
	}
}


#info h2 {
	color: var(--color-accent) !important;
}
#languages ul, #environment ul {
	columns: 2;
}

#calltoaction {
	border-top: 1px solid var(--color-accent);
}