/*

// music.css
// The music section
// Miniplayer on the sidebar, everything needed for the Music page.

*/

.music {
    background-color: black;
    overflow: hidden;
    backdrop-filter: blur(10px) saturate(70%);
}

.minimusic {
    aspect-ratio: 1 / 1;
    backdrop-filter: blur(10px) saturate(70%);
    overflow: clip;
}

.musicbg {
    position: absolute;
    background-size: cover;
    filter: brightness(50%) blur(5px); /* Dim and blur effect */
    z-index: -1;
    height: 100%;
    width: 100%;
    background-position: center;
    overflow: hidden;
}

.minimusicbg {
    position: absolute;
    background-size: cover;
    filter: brightness(50%) blur(5px); /* Dim and blur effect */
    z-index: -1;
    height: 100%;
    width: 100%;
    background-position: center;
}