body
{
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
   /* background-image: url(/cover.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(49px) saturate(0.8);*/
}

.container
{
    text-align: center;
    background: #ffffff9c;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    max-width: 600px;
}

.cover
{
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

audio
{
    width: 100%;
    outline: none;
    margin-top: 20px;
}

h1
{
    font-size: 2em;
    margin-bottom: 10px;
    color: #e34882;
}

h5
{
    color: #96304f;
    margin-top: 10px;
    font-weight: normal;
}

.info
{
    font-size: 1.2em;
    margin-top: 10px;
    color: #555;
}

@media (max-width: 600px)
{
    .container
    {
        padding: 20px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

#titleDisplay
{
    font-size: 14px;
    padding-top: 10px;
}

.player-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: -1;
    background-image: url(/cover.jpg);
}

.player-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.player-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.7);
    z-index: -1;
    backdrop-filter: blur(100px) saturate(1.3);
}
