body {
    background-color: rgb(44, 44, 44);
}

html, body {
    margin: 0;
    padding: 0;
}

canvas {
    display: block;
    background-color: #000;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    width: 100%;
    margin: 0px;
    padding: 0px;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #000;
}

.slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #000;
}

p,
a {
    margin: 0px;
    font-family: system-ui;
    font-size: 20px;
    margin-bottom: 5px;
    color: #d3d3d3;
}

#menutoggle {
    position: absolute;
    display: flex;
    z-index: 999;
    cursor: pointer;
    right: 5px;
    opacity: 0.65;
}

button {
    border-width: 0;
    font-size: large;
    color: #d3d3d3;
    background-color: #606060;
}