body{
	width: 600px;	
}

/* Page principal */
#main{
	width: 100%;
	height: 95vh;
	margin: 0px;
	padding: 0px;
	border: none;
}

h1{
	font-size: 5rem;
	color: orange;
	text-shadow: 0px 0px 10px black,0px 0px 5px black,0px 0px 5px black;
	margin-top: 20vh;
	text-align: center;
	font-family: Calibri, Arial, sans serif;
}

/* Image de fond */
#monde{
	width: 95%;
	height: 80%;
	position: relative;
	user-select: none;
	background-image: url("background.jpg");
	background-size: 200% 100%;
	border-radius: 10px;
	border : 1px solid black;
	overflow: hidden;
}

/* Le div qui contient les boutons */
#controls{
	width: 95%;
	margin-top: 1vh;
	position: relative;
	text-align: center;
	left: 0px;
	top: 0px;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

/* Tous les boutons */
input[type="button"]{
	width: 30%;	
	color: white;
	height: 12vh;
	font-size: 3vh;
	border-radius: 50%;
	background: linear-gradient(red, darkred);
}

#drone{
	width: 18%;
	position: absolute;
}

#plateform{
	width: 22%;
	position: absolute;
	top: 80%;
}

