footer {
    display: flex;
    background-color: black;
    color: white;
    height: auto;
    flex-direction: column;
    border-top:1px solid white;
    z-index: 1001;

}

.logo_site {
    max-width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.logo_site img {
    height: 50px;
    width: auto;
}

footer a {
    text-decoration: none;
    color: white;    
    font-family: "Inter", cursive;    
}


#informations_site {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    list-style: none;
}

@media (min-width:576px){
    footer{
        flex-direction: row;
        position: relative;       
        height:auto;
        justify-content: space-between;        
    }

    .logo_site{
        width:auto;
        padding: 10px 0px;
        
    }
    
}

@media (min-width:992px){  

    #informations_site a{
        padding:10px;
    }


    #informations_site a:hover{
        color:black;
        border-radius: 10px;
        background-color: white;

    }
    #informations_site{
        flex-direction: row;
    }


}

