body {
	background-color: black;
}
	
canvas {
	background: #e0e0e0;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
		
#enemy{
	display: none;
}
		
#plane{
	display: none;
}
		
#background{
	display: none;
}
		
#crash{
	display: none;
			
	position: absolute;
	z-index; 1000;
}
		
#score {
    font-size: 35px;
	font-weight: bold;
    text-align: center;
    font-family: Lucida Console;
	color: black;
    position: absolute;
    top: 5%;
    left: 10%;
    z-index: 10;
}
		
#level {
	font-size: 35px;
	text-align: center;
	font-weight: bold;
    font-family: Lucida Console;
	color: black;
    position: absolute;
    top: 5%;
    left: 50%;
    z-index: 10;
}
		
#gameOverDiv {
	border: 3px solid black;
	border-radius: 70px 20px 70px 20px;
	background-color: #E0F2F7;
	width: 600px;
	height: 400px;
			
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	z-index: 100;
	display: none;
}
		
#gameOverText{
	font-size: 75px;
	font-family: Times New Romen;
	color: black;
	text-align: center;
}
		
#exitButton {
	position: absolute;
	top: 70%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
			
	width: 250px;
	height: 65px;
		
    background-color: ;
    font-size: 35px;
	font-family: Times New Roman;
	border-radius: 10px;
    color: black;
    border: 5px solid green;
}
		
#startButton{
	position:absolute;
	transform: translate(-50%, -50%);
	top: 80%;
	left: 50%;
	z-index: 10;
    
	height: 60px;
	width: 400px;
	border-radius: 45px;
	border: 5px solid green;
	text-align: center;
	font-size: 40px;
	font-family: Lucida Console;
	font-weight: bold;
	background: none;
}

#pauseIcon{
	position: absolute;
	top: 5%;
	left: 90%;
	z-index: 10;
	height: 5%;
	width: 3%;
}

#playIcon{
	position: absolute;
	top: 5%;
	left: 90%;
	z-index: 10;
	height: 5%;
	width: 3%;
}

#arrowText{
	display: none;
	font-size: 20px;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 85%;
	left: 50%;
	z-index: 10;
}

#pauseDiv{
	height: 300px;
	width: 900px;
	background: white;
	border: 4px solid black;
	border-radius: 70px 20px 70px 20px;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	z-index: 20;
}

#skydriving{
	font-size: 95px;
	font-family: Times New Roman;
	text-align: center;
	margin-top: 5%;
}

#closeIcon{
	height: 60px;
	width: 70px;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 10%;
	left: 93%;
	z-index: 20;
}

#pauseStart{
	height: 60px;
	width: 250px;
	border-radius: 10px;
	border: none;
	font-size: 40px;
	font-family: Lucida Console;
	background-color: #2ecc71;
	color: white;
	position: absolute;
	top: 80%;
	left: 30%;
	transform: translate(-50%, -50%);
	z-index: 20;
}
		
#pauseExit{
	height: 60px;
	width: 250px;
	border-radius: 10px;
	border: none;
	font-size: 40px;
	font-family: Lucida Console;
	background-color: #2ecc71;
	color: white;
	position: absolute;
	top: 80%;
	left: 70%;
	transform: translate(-50%, -50%);
	z-index: 20;
}
		
#winDiv{
	border: 5px solid green;
	border-radius: 30px;
	background: none;
	height: 150px;
	width: 1000px;
			
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 500;
}
		
#winMsg{
	font-size: 100px;
	font-family: Goudy Stout;
	text-align: center;
	color: green;		
	margin-top: 1%;
}