* {
    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-y: auto;
    overflow-x: hidden;
  }
  
  .wrapper {
    display: flex;
    flex-direction: column;
    width: 60%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(9px);
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 10%; /* Ajustez la marge supérieure selon vos besoins */
    margin-bottom: 5%; /* Ajustez la marge inférieure selon vos besoins */
  }
  
  .image {
    width: 40%;
    height: auto;
    object-fit: cover;
    margin-right: 20px;
  }
  
  .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;
  }
  
  .content p {
    font-size: 16px;
    text-align: left;
    margin-bottom: 15px;
  }
  
  /* Ajout de règles pour le texte spécifique au début et à la fin */
  .content .thesis, .content .publication {
    font-size: 16px;
    margin-bottom: 15px;
  }
  
  .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;
  }
  