* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;

}
body {
  display: flex;

  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: url("../asset/bg.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden; /* Ajout de la propriété pour désactiver le défilement */
}

.wrapper {
  display: flex;
  width: 60%; /* Ajustez la largeur de la carte selon vos besoins */
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(9px);
  color: #fff;
  border-radius: 12px;
  overflow: hidden; /* Pour cacher le débordement de l'image */
}

.image {
  width: 40%; /* Ajustez la largeur de l'image selon vos besoins */
  height: auto%; /* Ajustez la taille de l'image selon vos besoins */
  object-fit: cover;
  object-position: center bottom; /* Centre l'image horizontalement et la place en bas */
  margin-right: 20px; /* Ajustez la marge selon vos besoins */
  margin-bottom: -1%;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px;
}

.content h1 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px; /* Ajustez la marge selon vos besoins */
}

.content h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.content h3 {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  margin-bottom: 20px;
}

.content h4 {
  font-size: 16px; /* Ajustez la taille du texte selon vos besoins */
  font-weight: normal;
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
}

.last-word {
  font-size: 14.5px;
  text-align: center;
  margin: 20px 0 15px;
}

.last-word p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.last-word p a:hover {
  text-decoration: underline;
}

#mot {
  color:burlywood;
  font-size: 20px;
  text-decoration : underline;

}