.footer {
    background-color: #0C0A09;
    color: #fff;
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer .copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer .copy .artist-name {
    color: #E7E5E4;
    font-size: 1.125rem;
    font-weight: 400;
}

.footer .copy .copyright {
    color: #A8A29E;
    font-size: 0.875rem;
}

.footer .social-media ul {
    display: flex;
    gap: 2rem;
}

.footer .social-media ul li a {
    font-size: 1rem;
    color: #78716c;
    padding: 0.8rem 1rem;
    transition: 0.3s ease-in-out;
}

.footer .social-media ul li .instagram:hover {
    background-color: #ff0062;
    border-radius: 12px;
    color: #fff;
}

.footer .social-media ul li .youtube:hover {
    background-color: #ff0000;
    border-radius: 12px;
    color: #fff;
}

.footer .social-media ul li .whatsapp:hover {
    background-color: #25d366;
    border-radius: 12px;
    color: #fff;
}

@media (max-width: 480px) {

    .footer {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding: 3rem 1.5rem;
        text-align: center;
    }

    .footer .social-media ul {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer .social-media ul li a {
        font-size: 0.875rem;
        padding: 0.6rem 0.75rem;
    }
}