html {
	width: 100%;
	height: 100%;

	font-family: "Arial", sans-serif;
	font-size: 18px;

	color: #ebebeb;
	background: linear-gradient(135deg, #d0c8c5 0%, #b9b2b0 100%);
}

body {
	margin: 0px;
	padding: 0px;

	display: flex;
	justify-content: center;
	align-items: center;

	width: 100%;
	height: 100%;
}

h1, a, p, ul, li {
	padding: 0px;
	margin: 0px;

	color: inherit;

	font-size: inherit;
	font-weight: normal;
	text-decoration: none;
}

main {
	padding: 4rem;
	margin: auto;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;

	background-color: #e9e9e994;

	border-radius: 32px;

	box-sizing: border-box;
	box-shadow: 0px 0px 32px #1b1b1b38;

	cursor: default;
	overflow: hidden;
}

main h1#title, main h1#error {
	color: #000000;
	font-family: "Governor";
}

main h1#title {
	font-size: 15rem;
	letter-spacing: -0.75rem;
}

main h1#error {
	font-size: 5rem;
}

main ul#links, main p#message {
	display: block;

	color: #2e2e2e;

	font-family: "Roboto Condensed";
	font-size: 1.75rem;
	text-align: center;
}

main ul#links {
	margin-top: 2rem;
}

main ul#links {
	display: flex;
	flex-direction: column;
}

main ul#links li {
	display: inline-block;

	list-style-type: none;

	transition: transform 0.125s;
}

main ul#links li:hover {
	transform: scale(1.1);
}
