:root {
    /* Couleurs utilisees dans tout le site */
    --fond-vert: #9fe1cf;
    --vert-fonce: #174f43;
    --vert-clair: #e9f7f3;
    --bordure: #b7d7cf;
    --texte: #12352e;
    --texte-gris: #6d7471;
    --blanc: #ffffff;
}

* {
    /* Evite que les tailles depassent a cause des bordures */
    box-sizing: border-box;
}

html,
body {
    /* Hauteur minimum de la page */
    min-height: 100%;
}

html {
    /* Fond autour du format telephone */
    background: var(--blanc);
}

body {
    /* Format telephone centre */
    width: min(100%, 402px);
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 auto;
    padding: 0 0 86px;
    color: var(--texte);
    background: linear-gradient(180deg, #174f43 0%, #9fe1cf 260px, #9fe1cf 100%);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.45;
}

