html, body {
	margin: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
body {
	font-family: liberation;
	display: grid;
	grid-template-rows: 26px 1fr 24px;
	background: #0a0a0a;
	color: #ffffff;
}
header, main, footer, .login, .info {
	display: grid;
	place-items: center;
}
header {
	border-bottom: 1px solid #2932a0;
	color: #daddff;
}
main {
	align-content: center;
	grid-auto-rows: min-content;
}
footer {
	font-size: 10pt;
	color: #444444;
	border-top: 1px solid #2932a0;
}
.login {
	width: 200px;
	height: 60px;
	border: 2px solid #111111;
	border-radius: 10px;
	box-shadow: 3px 3px 5px 2px #222222;
	background: #181818;
}
.login:hover {
	box-shadow: 3px 3px 5px #444444;
}
.button {
	border: 1px solid #444444;
	border-radius: 6px;
	font-size: 16pt;
	color: #aaaaaa;
	background: linear-gradient(to bottom, #1b1b1b 0%, #2f2f2f 46%, #010101 50%, #1b1b1b 100%);
	text-shadow: -2px -2px 2px #000000;
}
.button:hover {
	color: #a9c1ff;
	box-shadow: 0 0 3px #444444;
}
.button:active {
	color: #ff0000;
}
.info {
	font-size: 10pt;
	font-style: italic;
	color: #888888;
	margin-top: 16pt;
}
.center {
	text-align: center;
}
.italic {
	font-style: italic;
}
@font-face {
	font-family: liberation;
	src: url(/font/LiberationSans-Regular.ttf);
}
