body{
		background-color:black;
}
#container{
	background: url('background.jpg');
	width:1000px;
	height:550px;
}
#hero{
	background: url('1942.gif');  /* these are css sprites */
	background-position: -85px -180px; /* moves sprite images */
	width:28px; /* restricts width of the larger image */
	height:28px; /* restricts the height of the larger image */
	position:absolute;
}
.enemy1{
	background: url('1942.gif');
	background-position: -30px -10px;
	width:28px;
	height:28px;
	position:absolute;
}
.bullet{
	background: url('1942.gif');
	background-position: -185px -400px;
	width:18px;
	height:18px;
	position:absolute;
}
#score{
	position:absolute;
	border:10px solid red;
	top:20px;
	left:800px;
	background-color:white;
	padding:10px;
	font-size:30px;
	font-family: Arial;	
}