body {
    background-color: #201b17;
    color: #d73600;
    font-family: "Kode Mono";
    cursor: default;
    overflow: hidden;
}
.background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}
.row {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100dvw;
    pointer-events: none;
}
.cell {
    position: relative;
    display: flex;
    place-items: center;
    justify-content: center;
    font-size: 2dvh;
    width: 2dvh;
    height: 2dvh;
    pointer-events: none;
}
.click {
    pointer-events: all;
}
.selected {
    background-color: #201b17;
    color: #d73600;
}
.aceselected {
    background-color: #201b17;
    color: #990778;
}
.ref {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 2dvh;
    line-height: 1;
    pointer-events: none;
}
.title {
    position: absolute;
    right: 0;
    left: calc(100dvw - 42dvh);
    padding-left: 1dvh;
    top: 0;
    height: 10dvh;
    background-color: #d73600;
    color: #201b17;
    text-align: left;
    font-size: 2dvh;
}
.text {
    position: absolute;
    left: calc(100dvw - 100dvh);
    width: 79dvh;
    top: 6dvh;
    height: 10dvh;
    padding-left: 1dvh;
    line-height: 1;
    background-color: #d73600;
    color: #201b17;
    text-align: left;
    font-size: 2dvh;
}
.text2 {
    position: absolute;
    left: calc(100dvw - 90dvh);
    width: 79dvh;
    padding-left: 1dvh;
    top: 16dvh;
    height: 24dvh;
    line-height: 1;
    background-color: #d73600;
    color: #201b17;
    text-align: left;
    font-size: 2dvh;
}
.text3 {
    position: absolute;
    left: calc(100dvw - 72dvh);
    width: 59dvh;
    padding-left: 1dvh;
    top: 40dvh;
    height: 60dvh;
    line-height: 1;
    background-color: #d73600;
    color: #201b17;
    text-align: left;
    font-size: 2dvh;
}
.navbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25dvh;
    padding-right: 1dvh;
    height: 22dvh;
    line-height: 1;
    background-color: #d73600;
    color: #201b17;
    font-size: 2dvh;
    text-align: right;
    pointer-events: all;
}
.nav-accent {
    z-index: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6dvh;
    height: 54dvh;
    background-color: #d73600;
}
a {
    color: #201b17;
    text-decoration: none;
    cursor: crosshair;
}
.u {
    text-decoration: underline;
}
#nowplay {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #201b17;
    height: 4dvh;
    font-size: 2dvh;
    line-height: 1;
    display: none;
    flex-direction: column;
}
#vol {
    position: absolute;
    left: 6dvh;
    pointer-events: all;
    width: 90%;
}
#volnum {
    position: absolute;
    display: inline-flex;
    place-items: center;
    justify-content: center;
    line-height: 1;
}
.np {
    height: 2dvh;
    line-height: 1;
}
input[type="range"] {
    -webkit-appearance: none;
  background: transparent;
  justify-content: center;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
  background: #d73600;
  width: 100%;
  border: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
  background-color: #201b17;
  width: 1dvh;
    height: 1.25dvh;
  border-radius: 0;
  border: 1px solid #d73600;
}
input[type="range"]::-moz-range-thumb {
  background-color: #201b17;
  width: 0.75dvh;
  height: 1.25dvh;
  border-radius: 0;
  border: 1px solid #d73600;
}
input[type="range"]::-moz-range-track {
  background: #d73600;
  height: 1.25dvh;
  width: 100%;
  border: none;
}