/*
  Auteur      : Esther Pham 
  Date        : 23.12.2021
  Description : mise en page de tous le site avec l'acceuil
*/
body {
  right: 0px;
  left: 0px;
  background-color: blanchedalmond;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
  margin: 0px;
}
nav>div {
  background-color: burlywood;
}
#menuActif {
  background-color: rgba(228, 143, 32, 0.815);
  text-decoration: underline;
}
.video {
  display: flex;
  flex-direction: column;
}
a {
  color: black;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
nav>div:hover {
  background-color: rgba(228, 143, 32, 0.815);
}
.pied_de_page {
  margin-left: 10px;
  margin-bottom: 10px;
  padding: 0px;
  border: solid;
  border-color: black;
  border-width: 2px;
  width: 400px;
}
@media screen and (max-width: 800px){
  nav {
    flex-direction: column;
  }
  video {
    display: none;
  }
  article {
    flex-direction: column;
  }
}