body {
	background-color: #222;
	margin: 0;
	user-select: none;
	overflow: hidden;
}
#container {
	position: relative;
	margin-left: 20%;
	margin-top: 2%;
	width: 60%;
	height: 100%;
	border: 2px solid black;
	background-color: #8080ff;
	font-weight: bold;
	transition: 1s;
}
.container-header {
	position: relative;
	width: 100%;
	font-size: 40px;
	height: 40px;
	line-height: 40px;
	color: white;
	background-color: black;
}
#level {
	position: absolute;
	left: 45%;
}
#deaths {
	float: right;
}
#square {
	position: absolute;
	z-index: 2;
	width: 6%;
	height: 8%;
	background-color: red;
	border: 8px black solid;
	animation: animation 5s linear infinite alternate;
}
@keyframes animation {
	  0% {top: 40%;left: 10%;}
	 15% {top: 80%;left: 10%;}
	 50% {top: 80%;left: 84%;}
	 65% {top: 40%;left: 84%;}
	100% {top: 40%;left: 10%;}
}
#title {
	position: absolute;
	left: 3%;
	top: 8%;
}
#title p:nth-child(1) {
	font-size: 2vw;
	line-height: 0px;
	transition: 1s;
}
#title p:nth-child(2) {
	font-size: 6vw;
	line-height: 0px;
	color: black;
	margin: 70px 0;
	transform: scaleY(1.5);
	transition: 1s;
}
#title p:nth-child(3) {
	font-size: 2vw;
	line-height: 5px;
	transition: 1s;
}
#new-game {
	margin: 0;
	position: absolute;
	top: 70%;
	left: 25%;
	text-align: center;
	transform: translate(-30%,-70%);
	cursor: pointer;
	color: red;
	font-weight: bold;
	font-size: 80px;
	transition: color 0.5s, font-size 1s;
}
#load-game {
	margin: 0;
	position: absolute;
	top: 70%;
	left: 75%;
	text-align: center;
	transform: translate(-70%,-70%);
	cursor: pointer;
	color: blue;
	font-weight: bold;
	font-size: 80px;
	transition: color 0.5s, font-size 1s;
}
#new-game:hover, #load-game:hover {
	color: white;
}
#cvs {
	width: 100%;
	display: block;
	visibility: hidden;
}
.container-footer {
	width: 100%;
	font-size: 40px;
	line-height: 40px;
	color: white;
	height: 40px;
	background-color: black;
	text-align: center;
}
#sound {
	float: left;
	cursor: pointer;
}
#full {
	float: right;
	cursor: pointer;
	transition: 0.3s;
}
#full:hover {
	transform: scale(0.75);
}