html
{

}

*{
	box-sizing: border-box;
}

body 
{
	background-color: black;
	height: 99%;
	width: 99%;
	font-size: 100%;
	font-size: 1.0vw;
	font-family: "Verdana", sans-serif;
	margin: auto;
	color: red;
}

h1
{
	color: red;
	text-align: left;
	font-size: 120%;
	font-size: 1.2vw;
}

h2
{
	color: red;
	text-align: center;
	font-size: 150%;
	font-size: 1.5vw;
}

p 
{
	color: black;
	font-size: 100%;
	font-size: 1.0vw;
	text-align: left;
}

a
{
	color: royalblue;
}

ol
{
	color: black;
	text-align: left;
}

#header-image
{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: auto;
	margin-bottom: auto;
}

#main-container
{
	/*
	Main layout div, defines the display area
	*/
	position: relative;
	background-color: white;
	margin: auto;
	text-align: center;
	width: 80%;
}

#main-text
{
	text-align: center;
	margin: 10%;
	padding: 1%;
}

#spacer
{
	background-color: red;
	width: 100%;
	height: 5%;
}

footer
{
	color: dimgray;
	position: relative;
	text-align: center;
	font-size: 50%;
	font-size: 0.5vw;
}

