body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  text-align:justify;

  /*propriété pour l'image en fond*/
  background-image: url("./../images/background/celeste-sommet-background.png");

  /*précise que l'image reste fixe même si l'utilsateur scroll*/
  background-attachment: fixed;

  /*précise qu'on veut aucune repétition de l'image*/
  background-repeat: no-repeat;

  /*précsie qu'on veut que l'image couvre toute la page*/
  background-size: cover;
}

/*gestion des liens*/
a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: #9aff86;
}

/*affichage du menu en haut*/
.menu-haut {
  display: flex;
  position: fixed;
  top: 0;
  width: 100vw;
  height: 5vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

/*paramètrage page actuelle dans le ruban*/

.page-actuelle {
  color: #9aff86;
}

/*paramétrage des boutons*/
.bouton {
  font-size: 150%;
  align-items: center;
  width: 70vw;
  display: flex;
  justify-content: space-around;
}

/* tous les paramètres pour la liste déroulante*/
.liste-deroulante {
  position: relative;
  display: inline-block;
}
.contenu-liste {
  display: none;
  position: absolute;
  top: 62px;
  background-color: rgba(0, 0, 0, 0.6);
  min-width: 160px;
  z-index: 1;
}
.liste-deroulante:hover .contenu-liste {
  display: block;
}

li {
  list-style-type: none;
  color: white;
  text-align: center;
}
ul {
  padding: 0;
}

/*gestion du bloc transparent noir dans le main*/

main {
  display:flex;
  margin-top: 10%;
  margin-left:15%;
  margin-right:15%;
  margin-bottom:10%;
  padding-left:5%;
  padding-right:5%;
  padding-top:5%;
  padding-bottom:5%;
  background-color: rgba(0,0,0,0.7);
  /*position: absolute; */
  color: white;
}

video {
  display:flex;
  align-items:center;
  max-width: 100%;
  height: auto;
}
.centrer {
  display:flex;
  flex-direction: column;
  flex-wrap:wrap;
  align-items:center;
}
h1 {
  border-bottom:solid 2px white;
}
.texte {
  display:flex;
  align-items:flex-start;
}
.suivant {
  display:flex;
  flex-direction: column;
  align-items: flex-end;
}
