html {
    --color-one: #0c0003;
    --color-two: white;
    --color-three: #ff3165;
    --color-four: #ffe331;
}
body {
    background-color: var(--color-one);
    color: var(--color-two);
    text-transform: uppercase;
    font-family: "Nasalization";
    font-size: 1dvw;
    pointer-events: none;
}
.window {
    position: relative;
    border: 3px solid var(--color-three);
    width: 60dvw;
    height: fit-content;
}
.title {
    margin: 2dvh 2dvh 2dvh 2dvh;
    justify-content: center;
    font-weight: bold;
    color: var(--color-one);
    font-size: 1.5dvw;
    background-color: var(--color-three);
    width: calc(100% - 4dvh);
    text-align: center;
}
.container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
}
.rules {
    font-family: "Tektur";
    text-transform: lowercase;
    padding: 1dvh;
    text-align: left;
}
#thlink b {
    color: var(--color-two);
}
#thlink:hover {
    color: var(--color-one);
}
#thlink:hover b {
    color: var(--color-four);
}
.navbar {
    font-family: "Tektur";
    text-transform: lowercase;
    padding: 1dvh;
    text-align: center;
    font-size: 0.7dvw;
}
.hspacer {
    height: 3px;
    background-color: var(--color-three);
    width: 100%;
}
.hslash {
    height: 2dvh;
    width: 100%;
    border-top: 3px solid var(--color-three);
    border-bottom: 3px solid var(--color-three);
    background: repeating-linear-gradient(45deg, var(--color-one), var(--color-one) 1dvh, var(--color-three) 1dvh, var(--color-three) 2dvh);
}
b {
    color: var(--color-three);
    font-weight: 100;
}
a {
    color: var(--color-four);
    text-decoration: none;
    pointer-events: all;
}
a:hover {
    background-color: var(--color-three);
    color: var(--color-one);
}
#blink {
    color: var(--color-three);
    animation: blinker 1.5s infinite;
    cursor: default;
    pointer-events: all;
}
#htitle {
    color: var(--color-three);
    display: inline-flex;
}
#drag {
    display: inline-flex;
}
#artist {
    display: none;
}
#artist b {
    color: var(--color-four);
}
#track {
    display: none;
}
#track b {
    color: var(--color-four);
}
#playbtn {
    display: inline-flex;
    pointer-events: all;
    cursor: default;
    color: var(--color-four);
}
#playbtn:hover {
    color: var(--color-three);
}
#volume {
    display: none;
    pointer-events: all;
}
input[type="range"] {
    -webkit-appearance: none;
    background: transparent;
    justify-content: center;
    vertical-align: middle;
    pointer-events: all;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: var(--color-two);
    width: 100%;
    height: 1.25dvh;
    border: none;
    display: inline-flex;
    
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: var(--color-three);
    width: 1dvh;
    height: 1.25dvh;
    border-radius: 0;
    border: none;
}
input[type="range"]::-moz-range-thumb {
    background-color: var(--color-three);
    width: 0.75dvh;
    height: 1.25dvh;
    border-radius: 0;
    border: none;
}
input[type="range"]::-moz-range-track {
    background: var(--color-two);
    height: 1.25dvh;
    width: 100%;
    border: none;
}
@keyframes blinker {
    0%, 50% {
        color: var(--color-three);
    }
    51%, 100% {
        color: var(--color-one);
    }
}
#drag {
    pointer-events: all;
    cursor: default;
}
@media screen and (orientation: portrait) {
    .window {
        width: 100dvw;
    }
    .title {
        margin: 1dvw 1dvw 1dvw 1dvw;
        font-size: 1.4dvh;
        width: calc(100% - 2dvw);
    }
    .rules {
        font-size: 1.2dvh;
    }
    .navbar {
        font-size: 1.2dvh;
    }
}