* {
    margin: 0;
    padding: 0;
    font-family: 'Inria', serif;
    color: white;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
/*FOOTER*/
footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 210px;
    color: black;
    background-color: rgb(63, 5, 16);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;

}
.connexion {
    position: absolute; /* Fixe le bouton à un emplacement précis*/
    bottom: 20px; /* Distance du bas de la page */
    right: 20px; /* Distance de la droite de la page */
    background-color: #500614;
    text-decoration: none;
    font-size: 16px;
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

.connexion:hover {
    background-color: white;
    color: rgb(70, 5, 17);
}

.reseaux{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Prend l'espace disponible pour rester au centre */
    gap: 20px;
    width: 100%;
}

footer p{
    font-size: 20px;
    text-align: center;
}

@media (max-width: 1000px) {
    footer {
        height: auto;
        padding: 20px 0;
        text-align: center;
    }
    
    .reseaux {
        gap: 10px;

        .Insta{
            width: 33.33px;
            height: 33.33px;
        }

        .Facebook{
            width: 43.33px;
            height: 43.33px;
        }
    }

    footer p {
        font-size: 14px; /* Réduction de la taille du texte */
        margin-top: 20px;
    }
}