body{
	padding: 0px;
	margin: 0px;
}

canvas { /* this applies to our game area */
	margin-top: 0px;
	padding-top: 0px;
	margin: auto; /* center horizontally and add a bit of margin vertically */
	display:block; /* display as a non-inline block */
}
 
#debug { /* this applies to debug box */
	border:1px solid #888; /* set subtle gray border */
	margin: 10px auto; /* center horizontally and space vertically */
	border-radius:12px; /* makes the border round and sound */
}