*, ::before, ::after {
    box-sizing: border-box;
    list-style: none;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--color1);
    max-width: 100%;
    overflow-x: hidden;
}

section {
    display: flex;
    flex-direction: column; /* Utilisez une disposition en colonne pour centrer verticalement */
    align-items: center; /* Centre les éléments horizontalement */
    justify-content: center; /* Centre les éléments verticalement au milieu */
    height: 100vh;
    margin: auto;
}

p {
    text-align: center;
    font-size: 25px;
    margin: auto; /* Centre le paragraphe horizontalement */
    padding-bottom: 100px;
}

h1 {
    font-weight: 900;
}

a {
    text-decoration: none;
    color: rgb(54, 54, 54);
}

@media screen and (max-width: 850px) {
    p{
        font-size: 15px;
    }

    a{
        font-size: 20px;
    }
}