html, body {
    overflow: hidden;
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: black;
    height: 100vh;
    width: 100vw;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.preloader.ready:hover {
    cursor: pointer;
}

.preloader > .animated-logo {
    max-width: 350px;
}

.click-to-enter {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

.click-to-enter p {
    font-family: "VCR OSD Mono", Sans-serif;
}

#vc-song-timer {
    display: flex;
    font-family: "VCR OSD Mono", Sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
}

#vc-timer-wrapper {
    position: fixed !important;
    top: 12px;
    right: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    border: 1px solid white;
    padding: 6px 8px 8px 8px;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    width: 230px;
}

#playing, #not-playing {
    margin-top: 2px;
}

#vc-song-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.12);
}

@media only screen and (max-width: 768px) {
    #vc-timer-wrapper {
        top: 6px;
        right: 6px;
    }
}

#playing:hover, #notPlaying:hover {
    cursor: pointer;
}