.footer{
    width: 100%;
}
.contenedor-footer{
    
    width: 100%;
    height: 500px;
    background-color: black;
    align-items: center;
}
.footer-cont-img{
    text-align: center;
    
}
.footer-links{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.link-footer{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: "Poppins";
    font-weight: 400;
}
.link-footer:hover{
    color: cadetblue;
}
@media (min-width: 600px){
    .footer-links{
        flex-direction: row;
        justify-content: center;
        gap: 50px;
    }
    .contenedor-footer{
        background-color: #13171C;
        }
}
.icon{
    margin: 7px;
}
.social-links{
    margin-top: 70px;
    display: flex;
    justify-content: center;
    gap: 50px;
}
.parrafo-footer{
    color: white;
    text-align: center;
}
.logo-footer{
    width: 200px;
    height: 200px;
    transition: all 0.5s ease;
}
.logo-footer:hover{
    width: 250px;
    height: 250px;


    }


