* {
	font-family: 'Droid Serif', serif;
}

.gameWindow {
	position: relative;
	width: 800px;
	height: 600px;
	border: 1px solid black;
	margin: auto;
	margin-top: 20px;
	background-size: cover;
	box-sizing: border-box;
}

@keyframes gameTextFade {
	from {opacity: 0;}
	to {opacity: 1;}
}

#gameText {
	width: 700px;
	border: 1px solid black;
	border-radius: 6px;
	margin: 0px auto;
	padding: 15px;
	box-sizing: border-box;
	margin-top: 10px;
	background: white;
	opacity: 1;
}

#gameText.fade {
	animation-name: gameTextFade;
	animation-duration: 0.5s;
}

#gameText p {
	margin: 0px;
	font-size: 20px;
}
#gameText > p {
	margin-bottom: 10px;
}
#gameText li {
	padding: 8px 0px;
}
.layer2,.layer4 {
	position: absolute;
	background-size: contain;
	background-position: bottom center;
	background-repeat: no-repeat;
	width: 100%;
	height: 90%;
	bottom: 0;
}
.layer3 {
	position: absolute;
	background-size: contain;
	background-position: bottom center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	top: 0;
}

a {
	color: black !important;
	text-decoration: none !important;
}

a p {
	border-radius: 2px;
	border: 1px solid #aaa;
	background-color: #f0f0f0;
	padding: 5px 12px;
}

ul {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}

a p:hover {
	background-color: #e0e0e0;
}

#topGameText {
	margin-bottom: 10px;
}
