
html {
    --vol-bg: linear-gradient(to left, #111111, #111111 50%, #f4d920);
    --track-border: 3px solid #f4d920;
    --thumb-bg: #6f0fa3;
    --thumb-border: 3px solid #5f0fa3;
}
body {
    background-color: #111111;
    color: #c8d5da;
    font-family: "Mirano";
    overflow: hidden;
    cursor: default;
}
#title {
    position: absolute;
    top: 1dvh;
    left: 4dvh;
    width: calc(100dvw - 25dvh);
    height: 10dvh;
    display: flex;
    justify-content: space-between;
    text-align: center;
    align-content: center;
    place-items: center;
    font-size: 4dvh;
    color: #5f0fa3;
    font-family: "CCSuperhuman";
    text-shadow: 3px 3px 0 #33699955;
    padding-left: 4dvh;
}
a {
    color: #f4d920;
    text-decoration: none;
    cursor: pointer;
}
#navbar a {
    color: #111111;
}
#slash {
    background: repeating-linear-gradient(45deg, transparent, transparent 2dvh, #336999 2dvh, #336999 4dvh);
    height: 14dvh;
    position: absolute;
    left: 50dvw;
    right: 10dvh;
    top: 9dvh;
}
#navbar {
    position: absolute;
    top: 0;
    right: 0;
    border-bottom-left-radius: 1dvh;
    border: 3px solid #f4d920;
    background-color: #f4d920;
    width: 12dvh;
    padding: 4px;
    font-family: "NIN";
    font-size: 1.3dvh;
    z-index: 2;
}
#gradient {
    position: absolute;
    top: 2dvh;
    left: 2dvh;
    height: 75dvh;
    width: 2dvh;
    border: 3px solid #f4d920;
    background: linear-gradient(#f4d920, #111111 50%, #111111);
}
#rgradient {
    position: absolute;
    bottom: 2dvh;
    right: 2dvh;
    height: 75dvh;
    width: 2dvh;
    border: 3px solid #f4d920;
    background: linear-gradient(#111111, #111111 50%, #f4d920);
}
.content {
    border: 3px solid #336999;
    position: absolute;
    padding: 1dvh;
    width: calc(50dvw - 12dvh);
    overflow-y: scroll;
    font-size: 1.2vmin;
    font-family: "Barcola";
    cursor: default;
    overflow: hidden;
}
.l {
    left: 6dvh;
    top: 10dvh;
    bottom: 20dvh;
}
.r {
    right: 6dvh;
    top: 25dvh;
    bottom: 2dvh;
}
.container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background-color: #111111;
}
li {
    font-size: 1vmin;
}
.accent {
    position: absolute;
    left: 6dvh;
    bottom: 16dvh;
    font-size: 3dvh;
    color: #336999;
}
.numaccent {
    font-family: "Kleptocracy BD";
    writing-mode: sideways-lr;
    position: absolute;
    font-size: 5dvh;
    left: calc(50dvw - 3dvh);
    top: 12dvh;
    bottom: 12dvh;
    overflow: hidden;
    right: calc(50dvw - 3dvh);
    z-index: 2;
}
#purple {
    position: absolute;
    left: 4dvh;
    bottom: 2dvh;
    display: flex;
    place-items: center;
    justify-content: center;
    font-family: "Bebas Neue";
    font-style: italic;
    background-color: #5f0fa3;
    color: #111111;
    width: max-content;
    padding-right: 1dvh;
    padding-left: 1dvh;
    font-size: 5.4dvw;
}
#bluetop {
    position: absolute;
    left: 10dvh;
    right: 0;
    top: 0;
    height: 2dvh;
    border-bottom-left-radius: 1dvh;
    background-color: #5f0fa3;
}
#nowplaying {
    position: absolute;
    top: 1dvh;
    left: 1dvh;
    padding: 3px;
    background-color: #111111;
    text-transform: uppercase;
    font-weight: bold;
    display: none;
}
#themeselect {
    position: absolute;
    bottom: 1dvh;
    right: 1dvh;
    width: 50%;
    text-align: right;
    height: fit-content;
    padding: 3px;
    background-color: #111111;
    text-transform: uppercase;
    font-weight: bold;
}
#volnum {
    width: 5dvh;
    display: inline-block;
}
#vol {
    position: relative;
    top: 0.5dvh;
    width: calc(100% - 7dvh);
}
input[type="range"] {
    -webkit-appearance: none;
    background: transparent;
    justify-content: center;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
  background: var(--vol-bg);
  width: 100%;
  border: var(--track-border);
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
  background-color: var(--thumb-bg);
    height: 1.25dvh;
  width: 1dvh;
  border-radius: 0;
  border: var(--thumb-border);
}
input[type="range"]::-moz-range-thumb {
  background-color: var(--thumb-bg);
  width: 0.75dvh;
  height: 1.25dvh;
  border-radius: 0;
  border: var(--thumb-border);
}
input[type="range"]::-moz-range-track {
  background: var(--vol-bg);
  height: 1.25dvh;
  width: 100%;
  border: var(--track-border);
}