/* Import de la police "Poppins" depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

/* Applique la police "Poppins" à tous les éléments */
* {
  font-family: 'Poppins', sans-serif;
}

/* Style pour la classe .img_bas */
.img_bas {
  /* Définit l'image de fond */
  background-image: url('/images/test_7.png');
  /* Hauteur minimale de 80vh */
  min-height: 80vh;
  /* Positionnement de l'image au centre */
  background-position: center;
  /* Pas de répétition de l'image */
  background-repeat: no-repeat;
  /* Ajustement de l'image pour la couvrir */
  background-size: cover;
  /* Affichage en flexbox */
  display: flex;
  /* Orientation des éléments en colonne */
  flex-direction: column;
  /* Centrage vertical des éléments */
  justify-content: center;
  /* Centrage horizontal des éléments */
  align-items: center;
  /* Couleur du texte */
  color: #fff;
  /* Positionnement en arrière-plan */
  z-index: -2;
  /* Décalage vers le haut de 600px */
  margin-top: -600px;
}

.background_2 {
  background-image: url("/public/images/test_7_2.png");
  min-height: 80vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  z-index: -2;

}

