body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    overflow-x: hidden;
    margin: 0;
    font-family: Arial, sans-serif;
    color: whitesmoke;
    background-color: rgb(23, 32, 32);
}


#content {
    background-color: brown;
    width: 95vw;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;  /* mmm */
    z-index: 1;
}

#content video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Ensure the video is behind the content */
    pointer-events: none;
}

#player {
    text-align: center;
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 10px;
    border: 2px solid rgba(245, 245, 245, 0.65);
    padding: 10px 10px 30px 10px;
    max-width: 450px;
    width: 60%;
    z-index: 2;
}

#text {
    text-align: left;
}

#title {
    font-size: 20px;
    padding: 0px 5px;
}

#artist {
    margin-top: -10px;
    padding: 0px 5px;
    font-size: 15px;
    color: gray;
}

#image {
    min-width: 200px;
    min-height: 200px;
    width: 95%;
    max-width: 350px;
    border-radius: 50%;
    height: auto;
    border: 2px solid whitesmoke;
    animation: rotate 15s linear infinite;
    pointer-events: none;
}

.audio-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

audio {
    width: 90%;
    border-radius: 10px;
}

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