* {/*proprieter taille de boite trés utile notament pour le responssive*/
  box-sizing: border-box;
}
body{
  background-image: url(../img/fond.png);
  width: 100%;
}
/* En tete */
header{
  background-color: rgb(87, 214, 176);
  text-align: center;
}
header h1{
  color:rgb(48, 104, 85);
  font-size: 45px;
  /*Telecharger font est copier coller link*/
  font-family: "Anton", sans-serif;
  letter-spacing: 1px;
  /* Pour enlever la marge du titre*/
  margin:0 auto;
  text-align: center; 
}
header img{
  width:10%;
}

nav{
  background-color: rgb(48, 104, 85);
  display: flex;
  justify-content: space-around;
}
#activ_nav{
  background-color: rgb(48, 104, 85);
  display: flex;
  justify-content: space-around;
}

nav a {
  border: 2px solid rgb(172, 251, 148);
  background: rgb(87, 214, 176);
  color: rgb(48, 104, 85);
  margin: 10px;
  padding: 2px 10px;
  border-radius: 10px 0px;
  text-decoration: none;
  font-size: 20px;
}
.btn{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  border: 2px solid rgb(172, 251, 148);
background: rgb(48, 104, 85);
color: rgb(87, 214, 176);
/* margin: 10px; */
padding: 2px 10px;
border-radius: 10px 0px;
text-decoration: none;
font-size: 20px;
width: 15%;
}


/* Corp de page  */
main{
  background-color: rgb(87, 214, 176);
  margin: 0 auto;
  text-align: center;
  width: 50%;
}
h2{
color: rgb(82, 90, 90);
padding: 20px;
font-size:35px;
text-shadow: 1px 1px 2px #aaa;
/* 4 valeurs : ombre horizontale, verticale, zone de flou, couleur de l'ombre */
}
h3{
color: rgb(45, 92, 92);
padding: 15px;
font-size:22px;
}
img{
  width: 60%;
}
/*MULTIMEDIA*/ 
.none{
list-style-type: none;
}
.videoFond {
padding-left: 0;
padding-right: 0;
}  
.videoFond video {
  position: absolute;
  z-index: 1;
  /* ordre de superposition des éléments sur l'axe vertical et /!\ ne fonctionne que sur un élément ayant une position (relative, fixe ou absolute) */
  width: 100%;
}

.videoTexte {
  position: relative;
  width: 100%;
  height: 500px;
}

iframe[src="https://www.youtube.com/embed/MHYWgf3VqoY"] {
  width: 100%;
}

.audio {
  text-align: center;
}

iframe[allowfullscreen] {
  width: 100%;
}

/*FOOTER*/
footer{
  background-color:rgb(48, 104, 85);
  color:antiquewhite;
  text-align: center;
}
footer img{
  width: 10%;
}
