

body{
    margin : 0;
    overflow-x: hidden;

}

#main{
    min-height: 100vh;
}

footer{
    background-color: #1B1919;
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
}

#menu_footer{
    display: flex;
    justify-content: space-evenly;
    margin-left: -17%;
    font-size: 0.9rem;
}


.bloc_footer{
    color:white;
    font-family: 'Jost', sans-serif;   
}

.bloc_footer h2{
    text-align: center;
}

.listes_foot{
    list-style-type: none;
}

.listes_foot li a{
    text-decoration: none;
    color: white;
    &:hover{
        text-decoration: underline;
    }
}

#liste_reseaux{
    display: flex;
    justify-content: space-between;
    margin-left:-30%;
}

.logos{
    height: 30px;
}

#copyright{
    display: flex;
    justify-content: flex-end;
}

#copyright p{
    color: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    margin-right: 2%;
}

@media only screen and (max-width: 600px) {
    #menu_footer {
        flex-direction: column;
        margin-left: 0;
    }

    .bloc_footer {
        margin-bottom: 20px;
        text-align: center;
    }

    #liste_reseaux {
        flex-direction: column;
        margin-left: 0;
        text-align: center;
    }

    .logos {
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 1024px) {
    #menu_footer {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .bloc_footer {
        flex-basis: 30%;
        margin-bottom: 0;
        text-align: center;
    }

    #liste_reseaux {
        margin-left: 0;
    }
}