html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f4f4f4; /* Fond neutre */
    color: #333; /* Texte sombre et lisible */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.vh {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrap {
    max-width: 600px; /* Limiter la largeur pour ne pas trop étirer le texte */
    padding: 20px;
}

.wrap h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50; /* Texte d'un ton plus sombre pour le titre */
    margin-bottom: 20px;
}

.wrap h2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #7f8c8d; /* Gris moyen pour le sous-titre */
    margin-bottom: 30px;
}

.wrap p {
    font-size: 16px;
    color: #7f8c8d; /* Gris pour le texte de paragraphe */
}

@media (max-width: 600px) {
    .wrap h1 {
        font-size: 28px;
    }

    .wrap h2 {
        font-size: 18px;
    }

    .wrap p {
        font-size: 14px;
    }
}
