@font-face {
    font-family: Beardsons;
    src: url("BeardsonsNormal.otf") format("opentype");
}
html {
	padding: 0px;
	margin: 0px;
	color: rgb(255,255,255);
	background-color: rgb(0,0,0);
	font-family: Beardsons,sans-serif;
	font-size: 24px;
	overflow: hidden;
    height: 100%;
}
body {
	padding: 0px;
	margin: 0px;
	display: flex;
  	flex-direction: column;
	background-color: rgb(0,0,0);
	overflow: hidden;
    height: 100%;
}
header {
	padding: 0px;
	margin: 0px;
	flex-grow: 0;
	background-color: rgb(40,40,40);
    height: 100px;
    line-height: 100px;
    text-align: center;
    font-size: 36px;
    font-weight: 600;
}
section {
	flex-grow: 1;
    overflow-y: auto;
    text-align: center;
    padding-top: 200px;
    font-size: 30px;
}
ul {
	margin: 0px;
}
footer {
	padding: 0px;
	margin: 0px;
	flex-grow: 0;
	background-color: rgb(40,40,40);
    height: 60px;
    line-height: 60px;
    text-align: center;
}
a {
	color: inherit;
	text-decoration: none;
	outline: none;
	display: block;
}
