html {
    --bg: #000000;
    --color: #f70076;
    --button: #e7fa19;
    --inactive: #5e5e5e;
    --subtitle: #f70076aa;
}
body {
    background-color: var(--bg);
    color: var(--color);
    font-family: "Vipnagorgialla";
}

.container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100dvw;
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
}
#title {
    font-family: "Y224";
    font-size: calc(100dvh / 7.2);
    line-height: 1;
    pointer-events: none;
    z-index: 1;
}
#output {
    display: none;
}
#subtitle {
    position: absolute;
    left: 2dvh;
    bottom: 1.4dvh;
    font-size: calc(100dvh / 7);
    color: var(--subtitle);
    z-index: -1;
    pointer-events: none;
}
#navbar {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    text-transform: uppercase;
    width: 84dvw;
    height: 6dvh;
    padding: 5px;
    border-top-right-radius: 10px;
    background-color: var(--color);
    z-index: 1;
}
a {
    color: var(--button);
    text-decoration: none;
    transition-duration: 0.5s;
}
a:hover {
    background-color: var(--button);
    color: var(--color);
}
#song-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    height: 50%;
    z-index: 1;
}
.song-rows {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}
.inactive {
    background-color: var(--inactive);
    background-image: radial-gradient(var(--bg) 2px, transparent 2px);
    background-size: 8px 8px;
    width: 88px;
    height: 31px;
    clip-path: polygon(0 10px, 10px 0px, 88px 0px, 88px 21px, 78px 31px, 0px 31px);
    margin: 3px;
    cursor: pointer;
}
.inactive:hover {
    background-color: transparent;
    background-image: radial-gradient(var(--inactive) 2px, transparent 2px);
}
.active {
    background-color: transparent;
    background-image: radial-gradient(var(--button) 2px, transparent 2px);
    background-size: 8px 8px;
    width: 88px;
    height: 31px;
    clip-path: polygon(0 10px, 10px 0px, 88px 0px, 88px 21px, 78px 31px, 0px 31px);
    margin: 3px;
    cursor: pointer;
}
.active:hover {
    background-image: radial-gradient(var(--color) 2px, transparent 2px);
}
.playing {
    background-color: var(--button);
    background-image: radial-gradient(var(--color) 2px, transparent 2px);
    background-size: 8px 8px;
    width: 88px;
    height: 31px;
    clip-path: polygon(0 10px, 10px 0px, 88px 0px, 88px 21px, 78px 31px, 0px 31px);
    margin: 3px;
    cursor: pointer;
}
.audiostream {
    position: absolute;
    right: 21dvw;
    bottom: 20dvh;
    height: 18dvh;
    width: 30dvw;
    border: 4px solid var(--color);
    border-radius: 20px;
    display: flexbox;
    flex-direction: column;
    padding: 10px;
    color: var(--button);
    font-weight: normal;
    pointer-events: none;
}
#atitle {
    color: var(--color);
    text-align: center;
    text-transform: uppercase;
    background-color: var(--button);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.audiostream span {
    color: var(--color);
}
.player {
    position: absolute;
    left: 6dvh;
    bottom: 18dvh;
    width: 42dvw;
    background-color: var(--bg);
    display: flexbox;
    flex-direction: column;
    border: 4px solid var(--button);
    border-radius: 20px;
}
.player #stitle {
    position: relative;
    margin: 10px;
    border: 4px solid var(--color);
    color: var(--button);
    border-radius: 10px;
    text-align: center;
    text-transform: uppercase;
    padding: 4px;
    line-height: 1;
    pointer-events: none;
}
#playrow {
    display: flex;
    flex-direction: row;
    margin: 10px;
    justify-content: space-evenly;
}
.playerbtn {
  pointer-events: auto; 
  cursor: pointer; 
  position: relative; 
  color: var(--color); 
  height: auto; 
  width: calc(50% / 3);
  margin-top: 0;
  margin-bottom: 0;
  border: 4px solid var(--color);
  border-radius: 7px;
  display: grid; 
  place-items: center;
}
.playerbtn:hover {
    border: 4px solid var(--button);
    color: var(--button);
}
.plleft {
    margin-left: 0;
}
.plright {
    margin-right: 0;
}
.plmid {
    margin-left: 5px;
    margin-right: 5px;
}
.botsq {
    position: absolute;
    right: 10dvh;
    bottom: 0;
    width: 30dvh;
    height: 10dvh;
    background-color: var(--button);
    z-index: 0;
}
.sq {
    position: absolute;
    right: 10dvh;
    width: calc(30dvh - 20px);
    height: calc(30dvh - 20px);
    background-color: var(--button);
    z-index: 0;
    writing-mode: sideways-lr;
    pointer-events: all;
    padding: 10px;
}
.sq span {
    font-size: 1.4em;
    color: var(--color);
    cursor: pointer;
    transition-duration: 0.5s;
}
.sq span:hover {
    background-color: var(--color);
    color: var(--button);
}
.bot {
    bottom: 14dvh;
}

.mid {
    bottom: 48dvh;
}
#seeks {
  width: calc(100% - 24px);
  margin: 10px;
}
#vol {
  width: calc(50%);
  margin: 10px;
}
input[type="range"] {
  -webkit-appearance: none;
  background: transparent;
  justify-content: center;
  line-height: 1;
}
input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: var(--button);
  width: 100%;
  height: calc(2dvh + 2px);
  border-radius: 5px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background-color: var(--color);
  width: 1.5dvh;
  height: 2dvh;
  border-radius: 5px;
  border: 1px solid var(--color);
}
input[type="range"]::-moz-range-thumb {
  background-color: var(--color);
  width: 1.5dvh;
  height: 2dvh;
  border-radius: 5px;
  border: 1px solid var(--color);
}
input[type="range"]::-moz-range-track {
  background: var(--button);
  height: calc(2dvh + 2px);
  width: 100%;
  border-radius: 5px;
}
#vol::-moz-range-track {
    height: 1dvh;
}
#vol::-webkit-slider-runnable-track {
    height: 1dvh;
}