/* Je suis un commentaire en CSS3 */
* {/*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%;
}
div#nav{
  position: sticky;
  top: 1%;
  z-index: 1;
}

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;
}

/* Corp de page  */
main{
  background-color: rgb(87, 214, 176);;
  margin: 0 auto;
  text-align: center;
  width: 75%;
}
section{
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1{
  margin: 0;
}
h2{
  color: rgb(34, 105, 31);
  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(14, 131, 86);
  padding: 15px;
  /* margin: 0; */
  font-size:22px;
}
h4{
  color:aquamarine;
  padding: 10px;
  font-size:20px;
}
blockquote{
  text-align: justify;
  margin: 0;
}
p{
  width: 30%;
  font-size: 20px;
  margin: 0 auto;
}
.flex1{
  width: 70%;
  display: flex;
  flex-direction: column;
}
.flex .flex1 cite{
  margin-top: 2%;
}

img{
  width: 25%;
}
section.flex2{
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}
/*POSITION*/
.absolute {
  position: absolute;
  background: rgb(196, 12, 165);
  width: 100px;
  height: 100px;
  top: 5%;
  left: 10%;
}
.flex{
  display: flex;
  align-content: space-around;
  justify-content: space-around;
  align-items: center;
}
.flex .stick{
  width: 15%;
}
.relative {
  background: #8d085a;
  width: 400px;
  height: 400px;
  position: relative;
  bottom: 10px;
  right: 200px;
}

.relative div {
  position: absolute;
  top: 0px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e781d1;
}
.flex2 div{
  display: flex;
  flex-direction: column;
}

.flex2 .bouton{
  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;
}

/* La zone de pied de page */

footer{
  background-color:rgb(48, 104, 85);
  color:antiquewhite;
  text-align: center;
}
footer img{
  width: 10%;
}


