/*
 * Gam
 * Scott Greenlay
 */

* {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

body {
	background-color: #323232;
	font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
	font-size: 16px;
}

#game-canvas {
	position: fixed;
	width: 640px;
	left: 50%;
	margin-left: -320px;
	height: 480px;
	top: 50%;
	margin-top: -240px;
	background-color: #000;
	border-radius: 10px;
	/*
	cursor: none;
	 */
}

#footer {
	position: absolute;
	width: 400px;
	left: 50%;
	margin-left: -200px;
	height: 24px;
	bottom: 0px;
	padding: 5px;
	color: #777;
	text-align: center;
}

#footer a {
	color: #bbb;
	text-decoration: none;
}

#footer a:hover {
	color: white;
}
