*{
	padding: 0;
	margin: 0;
	border: 0;
}

.fade-in {
	animation: fadeIn 3s;
}

@keyframes fadeIn {
	 0% {opacity:0;}
	 100% {opacity:1;}
 }

@keyframes fadeOut {
	0% {opacity:1;}
	100% {opacity:0;}
}


body{
	display: flex;
	flex-direction: column;
}


#page-header{
	width: 100%;
	height: 100vh;

	position: relative;
	overflow: hidden;

}

#page-header > img{
	min-width: 100%;
	max-width: 100%;
	min-height: 100vh;
	max-height: 100vh;
	object-fit: cover;

}

#page-header-blur{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
}

#page-header > nav{
	position: absolute;

	top: 2%;
	left: 0;

	width: 100%;
}

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

.navbar > div{
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
}

.navbar-left{
	justify-content: flex-start;
}

.navbar-right{
	justify-content: flex-end;
}

.navbar-left:first-child{
	margin-left: 5%;
}

.navbar-right:last-child{
	margin-right: 5%;
}

.navbar-image{
	width: 8%;
	border-radius: 100%;
	margin-right: 5%;
}

.navbar-button{
	color: white;
	font-size: 200%;
	margin-right: 5%;
	/*font-family: Arial, sans-serif;*/
	font-family: Jost, sans-serif;
}

.navbar-button > a{
	color: white;
	text-decoration: none;
}

.navbar-button > a:hover{
	text-decoration: underline;
}

#page-header-content{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	justify-content: center;
}

#page-title{
	justify-content: center;
	text-align: center;
}

#page-title > *{
	cursor: pointer;
	margin: 2% 0;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

#page-title h1{
	color: white;
	font-family: Jost, sans-serif;
	/*font-family: Mathilda, sans-serif;*/
	/*font-family: Jost, sans-serif;*/
	font-size: 500%;
	white-space: nowrap;
	width: 100%;
}

#page-title > *:hover{
	text-decoration: underline;
	text-decoration-color: white;
}

#page-title > *:hover ~ *{
	text-decoration: underline;
	text-decoration-color: white;
	/*text-decoration-thickness: 5px;*/
}

#page-content{
	background: white;
	min-height: 100vh;
	height: 100vh;
	font-family: Jost, sans-serif;
}
