
.white-box {
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 80vw; /* 80% de la largeur de la fenêtre */
    height: 70vh; /* 80% de la hauteur de la fenêtre */
    background-color: var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: auto; /* Centre la boîte horizontalement et verticalement */
    margin-top: 5%;
    padding: 100px;
    box-sizing: border-box; /* Inclut le padding dans la taille de la boîte */
}

/* Ajuste le dernier conteneur pour permettre la révélation de la page verte */
.last-section {
    height: 100vh; /* Une hauteur de 2 fois la fenêtre pour permettre le scroll */
    background-color: transparent; /* Le dernier conteneur est transparent pour révéler la page verte */
    z-index: -1; /* Assure-toi que ce conteneur ne couvre pas la page verte */
}

.intro {
    font-size: 22px;
    font-weight: bold;
    color: var(--gray);
    text-align: justify;
    font-family: 'Lora', Arial, sans-serif;
    margin: 5px 0 20px;
}

.social-icons {
    margin-top: 15px;
}

.icon {
    width: 25px;
    margin: 0 10px;
}

.greeting {
    position: absolute;
    bottom: -65px;
    font-size: 60px;
    font-weight: bold;
    color: var(--gray);
}

@media (max-width: 768px) {
    .white-box {
        width: 90vw;
        height: auto;
        padding: clamp(24px, 5vw, 50px);
        margin: 0 auto; /* Centre horizontalement au cas où */
        box-sizing: border-box;
      }
    
      .intro {
        font-size: clamp(14px, 2.5vw, 18px);
      }
    
      .greeting {
        font-size: clamp(28px, 6vw, 40px);
        bottom: clamp(-35px, -6vw, -45px);
      }
    
      .icon {
        width: clamp(16px, 4vw, 20px);
        height: clamp(16px, 4vw, 20px);
        border-radius: 50%;
        margin: 0 clamp(3px, 1vw, 5px);
        object-fit: cover;
      }
    }