body {
	position: absolute;
	font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
	margin: 0px;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    background-color: #111111;
    overflow: hidden;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#FPS {
	position: absolute;
	top: 10px;
	right: 10px;
	color: white;
}

#gameContainer {
    position: relative;
}

#canvas {
	height: 100%;
	background-color: black;
}

#infoContainer {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: rgba(0,0,0,0.5);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

.title {
	font-size: 24px;
	text-align: center;
	margin-bottom: 15px;
}

.header {
	font-size: 18px;
	margin-bottom: 10px;
}

#info {
	padding: 10px;
	background: linear-gradient(0deg, rgba(34,34,34,0.9) 0%, rgba(0,0,0,0.9) 99%, rgba(255,255,255,0.9) 100%);
	border: 2px solid black;
    border-radius: 10px;
    overflow-y: auto;
}

.cheats {
	margin-top: 25px;
}

.cheats .row {
	margin-top: 10px;
}