/* =====================================================
   MUSIC PLAYER
===================================================== */

.music-player {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    justify-content: flex-start;
    margin-top: 30px;
    margin-left: 20px;
}

.song {
    width: 220px;
    text-align: center;
}

.record {
    width: 220px;
    height: 220px;
    cursor: pointer;
}

.record img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.record.playing {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =====================================================
   SONG TITLES
===================================================== */

.song-title {
    font-family: "fool-for-love", sans-serif;
    font-size: 24px;
    margin-top: 10px;
}

.song-artist {
    font-family: "candy", sans-serif;
    font-size: 18px;
    margin-top: 4px;
}


/* =====================================================
   MUSIC PAGE
===================================================== */

.music-page main {
    background-image: url("../Tate_background.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;
    color: white;
}

.music-page h2,
.music-page h3,
.music-page p,
.music-page .song-title,
.music-page .song-artist {
    color: white;
}


/* =====================================================
   MUSIC BACKGROUND VIDEO
===================================================== */

.music-page {
    position: relative;

    background-image: url("../Im-ok-Its-ok.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

#backgroundVideo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    display: none;
}


/* =====================================================
   OTHER MUSIC CLIPS
===================================================== */

.musicClip {
    display: none;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}