@media (max-width: 1200px) {

    .artist-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 1;
    }

    .artist-hover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }

    .left-text,
    .right-text {
        position: static;
        width: 100%;
        text-align: center;
        margin-top: -50px 0;
        transform: none;
        font-size: 10px;
        animation-delay: 0s;
    }

    .right-text {
        font-size: 13px;
        order: 2;
        animation-delay: 2s;
    }

    .left-text {
        font-size: 13px;
        order: 1;
        animation-delay: 3s;
    }

    .logogif-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 0;
        margin-top: 0;
    }
    .popup {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000000;
        opacity: 90%;
        z-index: 1000;
    }

    .popup-content {
        background-color: #000000;
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        max-width: 800px;
        text-align: center;
        color: white;
        position: relative;
        box-sizing: border-box;
    }

    .popup-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .popup-logo img {
        max-width: 75%;
        margin-bottom: 15px;
    }

    .popup-markdown {
        font-size: 10px;
        padding: 20px;
        letter-spacing: 0.15em;
        text-align: left;
    }

    .popup-images {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }

    .popup-images img {
        max-width: 90%;
        margin-bottom: 10px;
    }

    .popup-music iframe {
        width: 100%;
        height: auto;
    }

    .close-popup {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
    }

    .popup-content .popup-element {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .popup-content .popup-element.animate-in {
        opacity: 1;
        transform: translateY(0);
    }
}
