* {
    margin: 0;
    padding: 0;
    font-family: 'DM Sans', sans-serif;
    box-sizing: border-box;
}

.loading-overlay {
            position: fixed;
            width: 100%;
            height: 100%;
            background-color: #333;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

.loading-spinner {
            border: 4px solid #fff;
            border-top: 4px solid #333;
            border-radius: 50%;
            width: 80px;
            height: 80px;
            animation: spin 1s linear infinite;
        }

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

    100% {
        transform: rotate(360deg);
    }
}

.unsupported-browser {
    position: fixed;
    color: #fff;
    width: 100%;
    height: 100vh;
    background-color: #333;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

.container {
    width: 100%;
    height: 100vh;
    background-image: url(https://s3.eu-north-1.amazonaws.com/cdn.razorsharp.pro/media/gilbert-player/background.png);
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#site-logo {
    max-width: 400px;
    filter: drop-shadow(0 0 10px #000);
    margin: 20px;
    overflow: visible;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

.audio-player {
    background-color: #fff;
    width: 400px;
    border-radius: 25px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);

    font-family: 'DM Sans', sans-serif;

    position: relative;
    text-align: center;
    align-items: center;

    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

#albumart {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
}

.player-window {
    border-bottom: 1px solid #555;
}

#playlist {
    height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;

}

#playlist li {
    background-color: #fff;

    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    text-align: left;
    padding: 10px 25px;
    width: 100%;
    margin: 10px;
    border-bottom: 1px solid #555;

    transition: .1s ease;
}

#playlist h1 {
    font-size: 12px;
    font-weight: 400;
    margin: 2px;
}

#playlist p {
    font-size: 20px;
    font-weight: 900;
    margin: 2px;
}

#playlist li:hover {
    color: #555;
}