/* Contenedor del footer */
.cnt-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    flex-wrap: wrap;
    margin-top: 50px;
}

/* Redes sociales */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.social-icon {
    font-size: 1.5rem;
}

    
.credits {
    text-align: center;
}

.credits p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-top: 5px;
}

@media (min-width: 769px) {
    footer {
        margin-top: 50px;
    }
    
}

@media (min-width: 1024px) {
    footer {
        margin-top: 100px;
    }

}
