#ArrierePlan{
    /* L'arrièreplan du header */
    height: 330px;
    background-image: url("../images/wildlife/gemse6.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#Images>img {
  /* Les paramètres des images dans la gallerie */
  height: 250px;
  width: auto;
  object-fit: cover; 
}

#Images{
  /* Le flexbox des images dans la gallerie */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

@media screen and (max-width: 800px){
  #ArrierePlan{ /* Changement d'arrière plan en portrait */
    background-position: center;
    height: 600px;
  }
  #Images>img {
    /*Changement de la grandeur des images*/
    height: auto;
    width: 80vw;
    object-fit: cover; 
    padding: 10px;

  }
  #Images{
    /*Changement du flexbox en colonne*/
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }

}