.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
    background-color: var(--background-footer);
    gap: 2rem;
    padding: 0;
    width: 100%;
}

.footer__social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: aliceblue;
}
.footer__social li a i:hover {
    color: var(--boton-rojo);
}
.footer__dev{
    font-size: .5rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;

}

.footer__boton{
    height: auto;
    width: auto;
    padding: 1rem;
    font-size: 1.2rem;
    border-radius: 5px;
    background-color: var(--background-footer);
    font-family: var(--montserrat);
    color:white;
    font-weight: 600;
    border: none;
    text-transform: uppercase;
    border:solid 1px brown ;
    text-align: center;
    margin: 1rem;


}
.footer__boton:hover{
    cursor: pointer;
    background-color:white;
    color: var(--background-footer);
}




@media (min-width:800px) {
    .footer{
        flex-direction: row;
        justify-content:space-around;
       
    }
    .footer__enlace{
        display: none;
    }
    
}