html, body {
	height: 100%; width: 100%;
}

canvas {
	display: block;
}

body {
	background: #464646;
	color: #fff;
	font-family: Verdana, Arial, sans-serif;
	font-size: 18px;	
}

h1 {
	font-size: 30px;
}

p {
	margin: 0 20px;
}

a {
	color: #fff;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a.button {
	background: #185da8;
	border-radius: 5px;
	display: block;
	font-size: 30px;
	margin: 40px 0 0 270px;
	padding: 10px;
	width: 200px;
}

a.button:hover {
	background: #2488f5;
	color: #fff;
	text-decoration: none;
}

#game {
	height: 600px;
	left: 50%;
	margin: -300px 0 0 -400px;
	position: relative;
	top: 50%;
	width: 800px;
}

#gameCanvas {
	background: #001022;
}

#gameUI {
	width: 800px;
	height: 600px;
	position: absolute;
}


#gameIntro, #gameComplete {
	background: rgba(0, 0, 0, 0.5);
	height:460px;
	padding-top: 140px;
	text-align: center;
}

#gameStats {
	font-size: 14px;
	margin: 20px 0;
}
#difficultySelect {
        text-align: center;
        margin-top: 130px;
}