footer{
    background-color: #F5F5DC;
    color: #694D26;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem 1rem 1rem;
    @media screen and (max-width: 600px){
        flex-direction: column;
    }
}

footer section{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1.5rem;
    @media screen and (max-width: 850px){
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1rem;
    }
}
.contact-infos{
    display: flex;
    flex-direction: column;
    gap: 1rem;

}
.info{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}
.social-links{
    justify-content: center;
    gap: 0.75rem;
    width: 100px;
    height: 100px;
    @media screen and (max-width: 600px){
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
}
.social-links a{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 50px;
    max-height: 50px;
}
.social-links a svg {
    width: 100%;
    height: 100%;
}
footer img{
    width: 150px;
    @media screen and (max-width: 850px){
        width: 125px;
    }
    @media screen and (max-width: 600px){
        width: 100px;
    }
}
footer .info svg{
    width: 30px;
}
footer p{
    margin: 0;
}
footer a:hover{
    opacity: 70%;
}
