body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
}

#video-background {
    position: fixed;
    right: 0;
    top: -100%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 1s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.audio-play {
    cursor: pointer;
    color: #ffffff;
    font-size: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    z-index: 5;
}

#video-background.fade-out {
    opacity: 0;
}



#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 300px;
    height: 300px;
    
}

.circle {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    background-color: #0A0A0A;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    
}

.bvf-logo img {
    width: 200px;
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

#art {
    width: 300px;
    border-radius: 40000px;
}

.text {
    color: #fff;
    font-size: 20px;
    position: absolute;
    text-align: center;
    top: 74%;
    left: 50%;
    transform: translate(-50%, -50%);   
    width: 1920px;
    z-index: 100000;
}

.songText {
    font-weight: 600;
    font-size: 50px;
}
.artistText {
    font-weight: 400;
    font-size: 25px;
}

#logo {
    left: 50%;
    top: 13%;
    position: absolute;
    transform: translate(-50%, -50%);
    height: 50px;
}

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
     100% {
      transform: rotate(360deg);
    }
}

@media only screen and (max-width: 800px) {
    #content {
        width: 500px;
        height: 500px;
    }
    #art {
        width: 500px;
    }
    .circle {
        width: 70px;
        height: 70px;
    }
    .audio-play {
        font-size: 40px;
    }
}