body, html {
	margin: 0;
	padding: 0;
}
body {
	background: transparent url("img/bg.jpg") no-repeat center center fixed;
	background-size: cover;
	background-color: #333333;
	color: #FFFFFF;
	font-family: Helvetica, Arial, sans-serif;
}
h1 {
	font-family: 'Architects Daughter', cursive;
	position: relative;
	font-size: 36px;
	z-index: 999;
}
h1,h2,p {
	text-align: center;
	margin-bottom: 0;
	font-weight: 100;
}
*,h1,h2,h3,p,a,span {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none;   /* Chrome/Safari/Opera */
	-khtml-user-select: none;    /* Konqueror */
	-moz-user-select: none;      /* Firefox */
	-ms-user-select: none;       /* Internet Explorer/Edge */
	user-select: none;
}
h1:hover,h2:hover,h3:hover,p:hover,span:hover {
	cursor: default;
}
h2 {
	margin: 0 0 20px;
	font-weight: 100;
	font-size: 16px;
}
h3,p {
	margin: 4px 0;
	font-weight: 100;
}
a {
	color: #FFFFFF;
}
#aiSelection {
	position: fixed;
	width: 100%;
	height: 100%;
	padding-top: 400px;
	top: 0;
	background-color: rgba(0,0,0,0.9);
	text-align: center;
	z-index: 888;
}
#aiSelection span, #clear {
	text-decoration: underline;
}
#aiSelection span:hover, #clear:hover {
	cursor: pointer;
}
#halo {
	position: absolute;
	width: 82px;
	height: 82px;
	border-radius: 41px;
	background-color: #FFFFFF;
	opacity: 0;
	transform: scale(0.7);
	transform-origin: center;
	transition-property: opacity,transform;
	transition-duration: 1s;
}
#halo.animate {
	transform: scale(1.1);
	opacity: 0.2;
}
#canvas {
	display: block;
	margin: 10px auto;
	width: 600px;
	background: transparent url("img/woodboard.jpg") no-repeat center;
	background-size: cover;
	border: 8px solid black;
}
#score {
	position: absolute;
	margin: 240px 0 0 2%;
}
#footer {
	display: block;
	position: absolute;
	margin: 0 auto;
	width: 100%;
	bottom: 10px;
}
#footer, #footer a {
	font-size: 12px;
	color: #999999;
}
@media screen and (max-width: 800px) {
	#score {
		position: relative;
		margin: 0;
		text-align: center;
	}
	#canvas {
		width: 96%;
	}
}