footer{
    background: #532539;
    color: white;
    display: flex;
    min-height: 230px;
    
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    flex-wrap: wrap;

}

#creditos{
    background: #532539;
    color: white;
    display: flex;
    justify-content: center;
}
#creditos a{
    color: white;
    
}

#containerAddress{
    display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
}
#containerLinks{
    display: flex;
flex-direction: column;
color:white
}
.btnFooter a{
    color: white;
    text-decoration: none;
}

@media screen and (max-width:520px){
    footer{
        gap: 20px;
        flex-direction: column;
        
    }
    #containerLinks{
        flex-direction: row;
        gap: 20px;
    }
}

