:root{
    --arrondi:8px;
    --arrondi-serre:3px;
}

html{
    scroll-behavior: smooth;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a:focus-visible, 
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid red;
    outline-offset: 4px;
    border-radius: 2px;
}

h1{
    font-size: 60px;
}

.en-tete{
    padding: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.habillage-nav{
    display: flex;
    flex-direction: row;
    gap: 50px;
    font-size: 30px;
}

.habillage-nav-alt{
    display: flex;
    flex-direction: column;
    gap: 25px;
    font-size: 30px;
}

.pied-de-page{
    padding: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.pied-de-page-droits{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 40%;
    gap: 50px;

}

.pied-de-page-legal{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60%;
}

.pied-de-page-texte{
    font-size: 25px;
}

@media only screen and (min-width: 320px) and (max-width: 425px){
    .en-tete{
        display: flex;
        flex-direction: column;
        padding: 20px 2%;
        gap: 40px;
    }

    .habillage-nav{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }





    .pied-de-page{
        display: flex;
        flex-direction: column;
        padding: 40px 2%;
        gap: 80px;
    }

    .pied-de-page-droits{
        width: 100%;
    }

    .pied-de-page-legal{
        width: 100%;
    }
}