html, body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

canvas {
	position: absolute;
	width: 100%;
	height: 100%;
}

#gameContainer {
	position: relative;
	width: 100%;
	height: 100%;
}

#captions {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	-moz-transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
	position: absolute;
	top: 0px;
	color: #fff;
	z-index: 1;
	width: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	padding: 8px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.1em;
	line-height: 1.1em;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#captions.fadeIn {
	opacity: 1;
}
