body {
    background-color: black;
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.canvas {
    margin: auto auto;
    position: absolute;
    background-color: black;
}

.sliders {
    margin-top:126px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 12px;
    width: 350px;
    color: white;
}

.labels {
    padding-left: 20px;
}

.slidercontainer {
    display: flex;
    flex-direction: row;
    margin: 5px 5px 5px 5px;
    padding: 0 10px 0 0px;
}


/* The slider itself */

.slider {
    -webkit-appearance: none;
    margin-left: 10px;
    margin-top: 8px;
    width: 100px;
    height: 8px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}


/* Mouse-over effects */

.slider:hover {
    opacity: 1;
    /* Fully shown on mouse-over */
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff0e0e;
    cursor: pointer;
}

.slider::-webkit-slider-thumb:hover {
    width: 20px;
    height: 20px;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ff0e0e;
    cursor: pointer;
}