html{
	height: 100vh;
}
body{
	font-family: Georgia, serif;
	margin: 0;
	background-image: url("/img/introBackground.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 100vh;
	width: 100vw;
	display: grid;
	grid-template-rows: 100px 1fr auto;
	color: #FFD5A5;
	overflow: auto;
	box-sizing: border-box;
	padding: 0;
}
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	flex-direction: column;
	left: 35px;
	top: 35px;
}
header img{
	width: 150px;
	height: auto;
}
section{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
footer{
	display: flex;
	justify-content: space-between;
	color: white;
	align-items: center;
}
footer a{
	color: white;
	text-decoration: none;
}
footer .selected{
	text-decoration: underline;
}
h2{
	font-family: "CinzelDecorative";
	margin: 0;
}
a{
	color: inherit;
}
@font-face {
	font-family: 'CinzelDecorative';
	src: url('/fonts/CinzelDecorative-Regular.ttf');
}