::-webkit-scrollbar {
    width: 0.5dvh;
    height: 0.5dvh;
    background-color: #505050;
}

::-webkit-scrollbar-thumb {
    background: #838383;
}

::-webkit-scrollbar-thumb:hover {
    background: #868686;
}

::-webkit-scrollbar-corner {
    background-color: #505050;
}

button {
    padding: 5px;
    border: .5px solid #777;
    border-bottom: 1px solid #333;
    background-color: transparent;
    color: #bababa;
}

button:active {
    border: 0;
}

input[type="range"] {
    appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    box-shadow: inset 1px 1px 5px #0005;
}

input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 10px;
    height: 20px;
    border: .5px solid #0003;
    background-color: #ffffff10;
    overflow: visible;
    cursor: pointer;
    box-shadow: 1px 1px 2px #0005;
}

input[type="range"]::-webkit-slider-thumb:active {
    box-shadow: inset 1px 1px 2px #0005;
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    background: #505050;
    width: 25px;
    height: 25px;
    box-shadow: 1px 1px 2px #000;
    border-radius: 5px;
}

input[type="checkbox"]:active {
    box-shadow: inset 1px 1px 2px #0005;
}

input[type="checkbox"]:checked {
    content: '\2714';
    box-shadow: inset 1px 1px 2px #0005;
    width: 25px;
    height: 25px;
}
input[type="checkbox"]::after {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    font-size: 16px;
    color: #aaa;
}
input[type="checkbox"]:checked::after {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
    font-size: 16px;
    color: #aaa;
}

span {
    color: #aaa;
}

p {
    color: #aaa;
}

a {
    color: #ff8989;
}