@font-face {
    font-family: 'VCR OSD Mono';
    src: url('/assets/fonts/VCROSDMono.woff2') format('woff2'),
        url('/assets/fonts/VCROSDMono.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
.dlink {
    font-family: 'VCR OSD Mono';
}

pre {
    border: none!important;
    background-color: #3a3e40!important;
    color: white;
}

.asciilogo {
    overflow: hidden;
    text-align: center;
}

body {
    background-color: black;
    overflow-x: hidden;
    --sb-track-color: #3a3e40;
    --sb-thumb-color: #282c2d;
    --sb-size: 7px;
}

#video-background {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
    pointer-events: none;
    filter: blur(7px)!important;
}

.window-body {
    background-color: #3a3e40!important;
    color: white;
}

.credit-b {
    display: flex;
}

.titles {
    flex-direction: column;
    background-color: #2c2e30;
    border-radius: 0px 3px 3px 0px;
}

p {
    margin: auto;
}

img {
    filter: drop-shadow(5px 5px 10px #00000010);
}

.title-bar-text {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.lcont {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
}

.dlink {
    background-color: #2c2e30;
    border-radius: 3px;
    padding: 5px;
    max-width: 50%;
    width: 46%;
    text-align: center;
    color: white;
}

.dlink:hover,
.dlink:active,
.dlink:focus,
.slink:hover,
.slink:active,
.slink:focus,
.nav-link a:hover,
.nav-link a:active,
.nav-link a:focus {
    color: rgb(249, 34, 34)!important;
}

.slink {
    color: white;
    font-size: 11px;
    font-family: 'VCR OSD Mono';
}

#navbar {
    position: relative;
    width: 100vw;
    height: 40px;
    top:86px;
}

#navbar pre {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent!important;
}

.nav-link {
    color: white!important;
    font-size: 14px!important;
    position: absolute;
    top: 100%;
    left: calc(25% + 50vw / 2);
    margin-left:5px;
    transform: translate(-50%, 34%);
    margin-top:20px;
    font-family: 'VCR OSD Mono';
}

.nav-link a {
    text-decoration: none;
    color: white!important;
}

#overlays {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.918);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
}

#overlay-text {
    color: white;
    font-size: 24px;
    cursor: pointer;
    font-family: 'VCR OSD Mono';
}

.audio-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-direction: column;
}

.controls a img {
    height: 15px;
    cursor: pointer;
}
.controls {
    user-select: none;
}

#songInfo {
    font-family: 'VCR OSD Mono';
    font-size: 12px;
}

#songTitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.marquee {
    animation: marquee 10s linear infinite;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes marquee {
    0% {
        transform: translateX(90%);
    }

    100% {
        transform: translateX(-100%);
    }
}