@media (max-width: 560px) {
    .artist-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
        justify-content: center;
        z-index: 2;
        width: 100%;
    }
    .boxhead .otherPage {
        color: #FFFFFF;
        text-decoration: none;
      }

    .artist-cell {
        flex: 1 1 100%;
        max-width: 100%;
        height: auto;
        margin: 0px;
        align-items: center;
        justify-content: center;
    }

    .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;
    }

    .social-dock {
        width: 20%;
    }

    .social-icon img {
        max-width: 30px;



    }

    .social-icon img:hover {
        max-width: 30px;


    }

    .logo {
        height: 40px;
    }
    .popup {
        display: flex;
        align-items: center;
        justify-content: center;

        top: 0;
        left: 0;
        width: 100vw;
        max-height: 90vh;
        background-color: #000000;
        opacity: 100%;
        z-index: 1000;
        margin-top: 20px;
    }

    .popup-content {
        background-color: #000000;
        padding: 15px;
        border-radius: 10px;
        width: 95%;
        max-width: none;
        text-align: center;
        color: white;
        position: relative;
        box-sizing: border-box;
        overflow-y: auto;
    }

    .popup-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .popup-logo {
        padding-right: 0;
    }

    .popup-logo img {
        max-width: 80%;
        margin-bottom: 10px;
    }

    .popup-markdown {
        font-size: 7px;
        padding: 15px;
        color: rgb(255, 255, 255);
        letter-spacing: 0.1em;
        text-align: left;
    }

    .popup-images {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }

    .popup-images img {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .popup-music iframe {
        width: 100%;
        height: auto;
    }

    .close-popup {
        position: absolute;
        top: 5px;
        right: 5px;
        font-size: 18px;
    }

    .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);
    }
    .header {
        text-decoration: none;
        justify-content: center;
        flex-direction: column;
        padding: 10px;
    }

    .social-media-dock-header {
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }

    .logo {
        height: 50px;
        margin-bottom: 10px;
    }

    .contact-me-button {
        text-decoration: none;
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}



