html {
    --color-one: #ff128d;
    --color-two: #d3ff00;
    --color-three: black;
    --color-four: white;
}
body {
    text-transform: uppercase;
    background-color: var(--color-one);
    overflow-x: hidden;
}
.container {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100dvh;
    width: 100dvw;
}
.title {
    position: relative;
    font-family: "Kabisat";
    font-size: 60px;
    color: var(--color-two);
    width: 100%;
    background-color: var(--color-one);
    z-index: 2;
    pointer-events: none;
}
#nowplaying {
    display: none;
    font-family: "Kabisat";
    color: var(--color-two);
    font-size: 30px;
}
.title .vinyl {
    line-height: 3;
}
.selected {
    color: var(--color-two);
}
.selected:hover {
    color: var(--color-two);
}
.letters {
    position: relative;
    height: fit-content;
    width: 100%;
    background-color: var(--color-three);
    font-family: "Dotted";
    font-size: 5dvh;
    color: var(--color-four);
    padding-top: 20px;
    padding-bottom: 20px;
    cursor: default;
}
.content {
    position: relative;
    width: auto;
    height: 100%;
    display: none;
    font-family: "NIN";
    font-size: 20px;
    color: var(--color-four);
    padding-left: 20px;
    overflow-y: auto;
    scrollbar-color: var(--color-two) transparent;
    scrollbar-width: thin;
}
.content.selected {
    display: block;
}
.content .lukhash {
    color: var(--color-two);
    background-color: var(--color-three);
}
.default {
    display: block;
    position: relative;
    height: 100%;
}
.letlink {
    color: var(--color-four);
    transition-property: color;
    transition-duration: 0.5s;
}
.letlink.selected {
    color: var(--color-two);
}
.letlink:hover {
    color:var(--color-one);
    transition-property: color;
    transition-duration: 1s;
    cursor: pointer;
}
#thlink {
    color: var(--color-four);
    transition-property: color;
    transition-duration: 0.5s;
}
#thlink.selected {
    color: var(--color-two);
}
#thlink:hover {
    color:var(--color-one);
    transition-property: color;
    transition-duration: 1s;
    cursor: pointer;
}
.content span:hover {
    transition-property: color;
    transition-duration: 0.5s;
    color: var(--color-two);
    cursor: default;
}
.content span {
    color: var(--color-four);
    transition-property: color;
    transition-duration: 1s;
}
#nav {
    position: relative;
    height: min-content;
    padding-top: 10px;
    font-family: "Dotted";
    font-size: 2vh;
    color: var(--color-two);
}
#nav a {
    color: var(--color-two);
    text-decoration: none;
    width: min-content;
    transition-property: color;
    transition-duration: 1s;
}
#nav a:hover {
    color: var(--color-three);
    width: min-content;
    transition-property: color;
    transition-duration: 0.5s;
}
#vol {
    position: relative;
    top: 1dvh;
    writing-mode: sideways-lr;
    height: 6dvh;
    pointer-events: all;
}
input[type="range"] {
    -webkit-appearance: none;
    background: transparent;
    justify-content: center;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: transparent;
    border: 1px solid var(--color-two);
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: var(--color-two);
    width: 1.75dvh;
    height: 1dvh;
    border-radius: 0;
    border: 1px solid var(--color-two);
}
input[type="range"]::-moz-range-thumb {
    background-color: var(--color-two);
    width: 1.75dvh;
    height: 1.25dvh;
    border-radius: 0;
    border: 1px solid var(--color-two);
}
input[type="range"]::-moz-range-track {
    background: transparent;
    height: 100%;
    width: 100%;
    border: 1px solid var(--color-two);
}
@media screen and (orientation: portrait) {
    .letters {
        font-size: 9dvw;
    }
    .content {
        font-size: 2.6dvw;
    }
}