body {
    background-color: #272822;
    font-family: "Google Sans";
    color: white;
    cursor: default;
    font-size: 1.5dvh;
    overflow: hidden;
}
span {
    font-size: 1.5dvh;
}
.tag {
    color: #f92672;
}
.sub {
    color: #a6e22e;
}
.quote {
    color: #e6db74;
}
.char {
    color: #ae81ff;
}
.comment {
    color: #6d6958;
}
.script {
    color: #66d9ef;
}
a {
    color: white;
    text-decoration: none;
    cursor: pointer;
}
.container {
    position: absolute;
    display: flex;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
}
#code {
    background-color: #272822;
    width: 100%;
    font-size: 1.5dvh;
}
#code div {
    font-size: 1.5dvh;
}
#lines {
    background-color: #2f3129;
    color: #8f908a;
    font-size: 1.5dvh;
}
#volume {
    display: none;
    position: relative;
}
#volnum {
    color: #e6db74;
}
#vol {
    width: 8dvh;
}
.volinput {
    position: relative;
    display: inline-block;
    width: 8dvh;
    height: 1.5dvh;
}
input[type="range"] {
    -webkit-appearance: none;
    background: transparent;
    justify-content: center;
    display: inline-flexbox;
    place-items: center;
    vertical-align: middle;
}
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: white;
    width: 8dvw;
    border: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background-color: #ae81ff;
    width: 1dvh;
    height: 1dvh;
    border-radius: 0;
    border: 1px solid #ae81ff;
}
input[type="range"]::-moz-range-thumb {
    background-color: #ae81ff;
    width: 0.75dvh;
    height: 1dvh;
    border-radius: 0;
    border: 1px solid #ae81ff;
}
input[type="range"]::-moz-range-track {
    background: white;
    height: 1dvh;
    width: 100%;
    border: none;
}
@media screen and (orientation: portrait) {
    body {
        font-size: 1dvw;
    }
    .code {
        font-size: 1dvw;
        width: 90dvw;
    }
    .code div:hover {
        font-size: 1dvw;
    }
    .lines {
        font-size: 1dvw;
        width: 10dvw;
    }
    .lines div {
        font-size: 1dvw;
    }
}