* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

	margin: 0px;
	padding: 0px;	
	
	
}

html {
	width: 100%;
	height: 100%;
}

body {
	padding: 0px;
	margin: 0px;
	width: 100%;
	height: 100%;
	background: black;
}

#gameCanvas {
	background: black;
	position:absolute;
}


#hud {
	background: teal;
	position: absolute;
	top: 0px;
	right: 0px;
	width: 250px;
	height: 80px;
}

#background {
	background: red;
	width: 480;
	height: 270;
	margin: auto;
	
}

#background img {
	position: relative;
	width: 100%;
	height: 100%;
	
}






.ghost {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 80px;
	height: 80px;
	opacity: 0.8;
}

.ghost img{
	width: 100%;
	height: 100%;
}
