html {
    --color-one: #121212;
    --color-two: #fd5902;
    --color-three: #f2f2f2;
    --color-four: #121212;
}
body {
    background-color: var(--color-one);
    color: var(--color-two);
    font-family: monospace;
}
#container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100dvw;
    height: 100dvh;
    overflow: hidden;
}
.topsquare {
    position: absolute;
    top: 1dvh;
    left: 1dvh;
    width: 12dvh;
    height: 12dvh;
    background-color: var(--color-two);
}
.dir {
    position: absolute;
    top: 14dvh;
    left: 0;
    font-size: 12dvh;
    writing-mode: sideways-lr;
    font-family: "Oxona Bold";
    text-transform: uppercase;
    pointer-events: none;
}
.emptiness {
    position: absolute;
    top: 0;
    left: 14dvh;
    font-size: 12dvh;
    font-family: "Oxona Bold";
    text-transform: uppercase;
    pointer-events: none;
}
canvas {
    position: absolute;
    top: 38dvh;
    right: 1dvh;
    width: 50dvw;
    height: 24dvh;
    background-color: var(--color-two);
    border: 1px solid var(--color-two);
    display: none;
    z-index: 2;
}
#hits {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 1dvh;
    right: 1dvh;
    width: 50dvw;
    height: 33dvh;
    border: 1px solid var(--color-two);
    justify-content: flex-end;
    align-items: flex-end;
    background-color: var(--color-two);
    overflow: hidden;
}
#hitstats {
    display: flex;
    flex-direction: row;
    position: absolute;
    top: 34dvh;
    right: 1dvh;
    width: 50dvw;
    border: 1px solid var(--color-two);
    background-color: var(--color-two);
    color: var(--color-one);
    justify-content: space-evenly;
    font-weight: bold;
}
#views {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 1dvh;
    right: 1dvh;
    width: 50dvw;
    height: 33dvh;
    border: 1px solid var(--color-two);
    justify-content: flex-end;
    align-items: flex-end;
    background-color: var(--color-two);
    overflow: hidden;
}
#viewstats {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 34dvh;
    right: 1dvh;
    width: 50dvw;
    border: 1px solid var(--color-two);
    background-color: var(--color-two);
    color: var(--color-three);
    justify-content: space-evenly;
    font-weight: bold;
}
.column .hitbar {
    background-color: var(--color-one);
    height: 33dvh;
}
.column:hover .hitbar {
    background-color: var(--color-three);
}
.column .viewbar {
    background-color: var(--color-three);
    height: 33dvh;
}
.column:hover .viewbar {
    background-color: var(--color-four);
}
#nav {
    position: absolute;
    display: flexbox;
    top: 15dvh;
    left: 15dvh;
    width: calc(50dvw - 24dvh);
    height: 10dvh;
    padding: 1dvh;
    background-color: var(--color-three);
    justify-content:space-evenly;
    place-content: center;
    text-align: justify;
    font-size: 2dvh;
    font-family: "Kode Mono";
}
#nav a {
    color: var(--color-one);
    font-family: "Kode Mono";
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    font-size: 2dvh;
}
#nav a:hover {
    color: var(--color-two);
}
.content {
    position: absolute;
    top: 30dvh;
    left: 15dvh;
    width: calc(50dvw - 24dvh);
    color: var(--color-three);
    font-family: "Kode Mono";
    pointer-events: none;
}
.content b {
    color: var(--color-two);
}
.bottriangle {
    position: absolute;
    bottom: 1dvh;
    right: calc(50dvw + 2dvh);
    background-color: var(--color-three);
    width: 15dvh;
    height: 15dvh;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}
.botnum {
    position: absolute;
    display: flex;
    bottom: 1dvh;
    right: calc(50dvw + 16dvh);
    left: 1dvh;
    justify-content: space-evenly;
    color: var(--color-two);
    font-family: "Oxona Bold";
    font-size: 14dvh;
    pointer-events: all;
    cursor: default;
}
#bottrack {
    position: absolute;
    bottom: 17dvh;
    left: 3dvh;
    font-family: "Kode Mono";
    font-size: 3dvh;
    color: var(--color-two);
    pointer-events: none;
}
.statstext {
    position: absolute;
    right: 2dvh;
    top: 40vh;
    z-index: 0;
    color: var(--color-three);
    font-family: "Oxona Bold";
    font-size: 16dvh;
    pointer-events: none;
}
.clinks {
    background-color: var(--color-three);
    color: var(--color-one);
    font-weight: bold;
}
.clinks span {
    color: var(--color-two);
    pointer-events: all;
    cursor: pointer;
}
.clinks span:hover {
    background-color: var(--color-two);
    color: var(--color-four);
    cursor: pointer;
}
/* algo pull: https://www.youtube.com/watch?v=qwMZqALxPzk&list=RDqwMZqALxPzk&start_radio=1 */