#top-screen {
	background-color: #1f1f21;
	-webkit-user-select: none;
	        user-select: none;
	position: relative;
}

#bottom-screen {
	background: #2b2b2e;
	color: white;
	-webkit-user-select: none;
	        user-select: none;
}

#text {
	color: white;
	font-size: 30px;
	font-weight: bold;
	left: 50%;
	position: absolute;
	text-shadow: 0px 0px 5px #000;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}

#canv {
	position: absolute;
}

#line {
	border-left: 6px dashed #D6D6D6;
	height: 100%;
	left: 50%;
	position: absolute;
	top: 0;
	-webkit-transform: translateX(-4px);
	        transform: translateX(-4px);
	width: 0;
}

#score {
	text-align: center;
}

#score > * {
	background-color: #bdbdbd;
	border: 2px solid black;
	border-radius: 10px;
	display: inline-block;
	font-size: 120%;
	padding: 5%;
	margin: 5% 2% 2%;
	text-align: center;
	width: 20%;
}

#score-player {
	color: #0f960f;
}

#score-enemy {
	color: #a40000;
}

#level {
	color: orange;
	margin-top: 1%;
	text-align: center;
}

#controls {
	margin-top: 20%;
	text-align: center;
}