html,body {
	background-color: #555;
}
#stage {
	width: 1500px;
	height: 600px;
	position: relative;
	margin: auto;
	background-color: #000;
	overflow: hidden;
}
#gameTimer {
	width: 300px;
	height: 30px;
	background-color: #555;;
	position: absolute;
	top: 0;
	left: 0;
}
#gameTimerContainer {
	width: 300px;
	height: 30px;
	border: 1px solid orange;
	position: absolute;
	top: 10px;
	right: 10px;
}
#livesContainer {
	position: absolute;
	top: 10px;
	right: 320px;
	height: 32px;
	width: 32px;
	box-sizing: border-box;
	font-size: 24px;
	padding-top: 3px;
	text-align: center;
	background-color: #fff;
	color: #000;
}
#player {
	position: absolute;
	height: 50px;
	width: 50px;
	top: 10px;
	left: 10px;
}