* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

.image-container {
  position: relative;
  display: inline-block; /* Pour que le conteneur s'adapte à l'image */
  width: 143; /* Ou une largeur fixe */
}

.image-container img {
  display: block; /* Supprime l'espace sous l'image */
  width: 100%;
  height: auto;
}

.texte-sur-image {
  position: absolute;
  top: 90%;
  left: 20%;
  transform: translate(-50%, -50%); /* Centre parfaitement le texte */
  color: white; /* Couleur du texte */
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent pour lisibilité */
  padding: 6px;
  font-size: 10px;
  text-align: center;
}

.texte-sur-image2 {
  position: absolute;
  top: 10px;
  left: 80%;
  transform: translate(0%, 0%); /* Centre parfaitement le texte */
  color: yellow; /* Couleur du texte */
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent pour lisibilité */
  padding: 6px;
  font-size: 10px;
  text-align: left;
}

.texte-sur-image3 {
  position: absolute;
  top: 84%;
  right: 5%;
  transform: translate(0%, -0%); /* Centre parfaitement le texte */
  color: white; /* Couleur du texte */
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent pour lisibilité */
  padding: 6px;
  font-size: 10px;
  text-align: Right;
}
   