body {
    margin:0;
	padding:0;
	
	font-family: Georgia, 'Times New Roman', Times, serif;
	height:100vh;
	background-color: #2c3e50;
	

}

h2 {
    text-align: center;
    color: aquamarine;
	letter-spacing: 1px;

	 
 
   opacity: 0;
  transform: translateY(-10px);
  animation: apparition 0.3s 1.3s ease-out forwards;
   
}

#box {
    width:80%;
    margin: auto;
}

#movie {
	margin-top: 20px;
	
}

#video {
    border: 1px solid black;
    width:100%;
    }
#boutons{
	
	margin-top: 10px;
	display: flex;
	justify-content: space-around;
	


}


input{

	width: 95px;
	
	height: 30px;
	background: #3498db;
	color: white;
	font-size: 14px;
	border-bottom: 5px solid #2980b9;
	border-radius: 9px;
	cursor: pointer;

}



input:hover{
	background:#37bdde;
	
}


.definition {
	text-align: center;
	color:antiquewhite;
	font-size: 18px;
	margin-top: 20px;

	  opacity: 0;
  transform: translateY(-10px);
  animation: apparition 1s 2s ease-out forwards;
}
span {
	font-style: italic;
	font-size: 14px;
	color:aquamarine
}


p{
	text-align:center;
	
}

a {
	font-size: 20px;
	color: aqua;
	text-decoration: none;
	transition: 1s;
	letter-spacing: 1px;
}

.retour a:hover {
	 background-image: url(mini_nature018.gif);
  font-size: 2.6vw;
   background-repeat: no-repeat;
  color: red;
  font-weight: bolder;
  letter-spacing: 2px;
  
}






@keyframes apparition {
  100%{
    opacity: 1;
    transform: none;
  }
}

.loading-anim {
  animation-play-state: paused !important;
}