body {
	background: #303030;
	color: white;
	font-family: "Verdana";
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

header {
	text-align: center;
	font-size: x-large;
}

main {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: x-large;
}

footer {
	text-align: center;
	padding: 10px;
	margin-top: auto;
}

a:link,
a:visited {
	color: white;
	text-decoration: underline;
}

a:hover {
	color: grey;
}