* {
	margin: 0;
	padding: 0;
}

body {
	background-color: darkseagreen;
}

#container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 400px;
	height: 600px;
	margin-top: -300px;
	margin-left: -200px;
	background-color: black;
}

#mainCanvas {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
}

#paintCanvas {
	position: absolute;
	z-index: 3;
	top: 0;
	left: 0;
}

#instructions {
	position: absolute;
	z-index: -2;
	top: 30%;
	left: 0;
	width: 100%;
	height: 70%;
}

#message {
	position: absolute;
	z-index: -2;
	top: 80px;
	left: 0;
	width: 100%;
	height: 30%;
	
	text-align: center;
	color: white;
}

#message h1 {
	font-family: Impact, Charcoal, sans-serif;
	font-size: 30px; 
	font-variant: small-caps;

}

#message p {
	font-family: "Blackadder ITC";
	font-size: 12px;
	
}


#instructions img{
	width: 100%;
}

#overlay {
	position: absolute;
	z-index: 2;
	top: 0%;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	color: white;
	font-family: monospace;		
}

#lives{
	position: absolute;
	top:0;
	font-size: 40px;	
}

#fps{
	position: absolute;
	bottom:0;
	font-size: 8px;
	font: #999999;
}
