@charset "utf-8";

:root {
	--red: #eb1567
}

.visible {
	opacity: 1;
	transition: opacity 1.2s;
}

.hidden {
	opacity: 0;
	transition: opacity 1.2s;
}

body {
	color: #ffffff;
	background-color: #04091b;
	font-family: "mundial", sans-serif;
	font-weight: 100;
	font-style: normal;
}

a {
	color: #ffffff;
	text-decoration: none;
}

.genre {
	font-style: italic;
}

.description {
	text-align: justify;
}

h1 {
	font-size: 4em;
	margin-bottom: 0.2em;
}

a:hover {
	color: var(--red);
}

#titleFirstName {
	display: flex;
	justify-content: center;
	margin-top: 800px;
	margin-bottom: 0;
	margin-right: 300px;
	font-size: 20rem;
	font-weight: 800;
}

#titleLastName {
	display: flex;
	justify-content: center;
	margin-top: -165px;
	margin-left: 380px;
	font-size: 12rem;
	font-weight: 800;
}

canvas {
	position: absolute;
	z-index: -100;
	width: 100%;
	top: 0;
}

#nav {
	width: 200px;

	position: fixed;
	display: flex;
	top: 200px;
	left: 12px;
	flex-direction: column;
}

#nav * {
	padding-top: 0px;
	padding-bottom: 0px;
	margin-top: 4px;
	margin-bottom: 4px;
}

#back {
	display: flex;
	flex-direction: row;
	align-items: center;

	gap: 0.2em;

	margin-bottom: 2em;
}

#back p {
	font-size: 1.2em;
	padding-bottom: 4px;
}

#back svg {
	width: 24px;
	height: 24px;
}

#back:hover svg {
	fill: var(--red);
}

.tab1 {
	margin-left: 12px;
}

.tab2 {
	margin-left: 2em;
}

#content {
	display: flex;
	flex-direction: column;
	padding-left: 14%;
	padding-right: 14%;
}

#content img, iframe {
	margin-bottom: 2em;
}

#content .previews img {
	margin-bottom: 0;
}

#content iframe {
	align-self: center;
	width: 1120px;
	height: 630px;
}

.subHeading {
	font-size: 3em;
	font-weight: 100;
}

.project {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;

	width: 1100px;
	padding: 10px;
	
	margin-bottom: 3em;

	border: solid;
	border-color: #ffffff;
	border-width: 1px;

	background-color: #04091bad;
}

.projectSite {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-self: center;

	width: 1100px;
	padding: 10px;

	margin-bottom: 3em;

	border: solid;
	border-color: var(--red);
	border-width: 1px;

	background-color: #04091bad;
}

.projectSite .windowHeader .windowIcons {
	background-color: var(--red);
}

.projectSite a, p a {
	text-decoration: underline;
}

.project:hover {
	border-color: var(--red);
}

.project:hover * {
	color: var(--red);
}

.project:hover .windowHeader .windowIcons {
	background-color: var(--red);
}

.windowHeader {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.projectTitle {
	display: flex;
	flex-direction: row;
	gap: 10px;

	margin-bottom: 0.5em;
}

.projectTitle * {
	margin: 0;
	padding: 0;

	color: #ffffff;
	font-size: 1.4em;
}

.projectTitle h3 {
	font-weight: 800;
}

.projectTitle p {
	font-weight: 100;
}

.windowIcons {
	width: 70px;
	background-color: #ffffff;
	-webkit-mask: url(media/window_icons.svg) no-repeat top;
  	mask: url(media/window_icons.svg) no-repeat top;
}

.previews{
	display: flex;
	justify-content: space-around;
}

.preview{
	object-fit: cover;
	width: 250px;
	height: 180px;
}

#impressum {
	display: flex;
	justify-content: flex-end;
	margin-top: 100px;
	margin-bottom: 40px;
}