/* Div contenant tous les symptômes sous forme d'une grille */
.galerie {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2%;
  margin-bottom: 2%;
  text-shadow: 5px 5px 10px black;
  margin-left: 7.5%;
  margin-right: 7.5%;
}

/* Fond noir de la grille */
.grid_galerie {
  position: relative;
  background-color: rgb(0, 0, 0);
  border-radius: 5%;
  max-width: 400px;
  margin-top: 2%;
  margin-bottom: 2%;
}

/* Positionnement du texte de la grille */
.grid_galerie_position {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(255, 255, 255);
  width: 80%;
}

/* Image de la grille légèrement transparente */
.grid_galerie img {
  width: 100%;
  height: 100%;
  border-radius: 5%;
  opacity: 0.8;
}