body{
	background-color: #222222;
}

h1, h2{
	color: #777777;
	text-align: center;
	font-family: 'Gloria Hallelujah', cursive;
}
h1{
	font-size: 50px; 
	margin-bottom: 0;
}
h2{
	font-size: 20px;
	margin-top: 0;
}

#gameWindow{
	position: relative;
	width: 800px;
	height: 400px;
	background-color: black;
	overflow: hidden;
	margin: 0 auto;
}

#pc{
	position: absolute;
	background-image: url("images/pc.png");
	overflow: hidden;
}

#drE{
	position: absolute;
	z-index: 1;
	background-image: url("images/bobbleJake.png");
}

.platform{
	position: absolute;
	background-color: orange;
	border-radius: 5px;
}

.spikey{
	position: absolute;
}

#btnContinue{
	position: absolute;
	left: 350px;
	top: 320px;

	display: none;

	background-color: rgba(255, 255, 255, 0.6);
	color: black;

	padding: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-radius: 10px;

	text-align: center;
	font-size: 14pt;

	cursor: hand;
	cursor: pointer;

	z-index: 10;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
#btnContinue:hover{
	background-color: rgba(255, 255, 255, 0.9);
}

.msgGameOver{
	font-size: 50pt;
	text-align: center;
	color: white;
}

#lifebar{
	position: absolute;
	width: 400px;
	left: 400px;
	text-align: right;
}

.flipHorizontal{
	-moz-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
	filter: FlipH;
	-ms-filter: "FlipH";
}