* {
    box-sizing: border-box;
}

body,
html {
    font-family: 'Francois One', sans-serif;
    margin: 0;
    padding: 0;
    color: #f55693
}

canvas {
    position: absolute
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
}

.wrapper-outer {
    margin: auto;
    margin-top: 60px;
    width: 60%;
    background: rgba(251, 251, 251, 0.55);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(5.5px);
    -webkit-backdrop-filter: blur(5.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

section.all-sliders {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    float: left;

}

.slidecontainer {
    width: 50%;
    float: left;
    margin: 41px 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #c4bfff;
    outline: none;
}

.slider:hover {
    opacity: 1;
}

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

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


.first {
    width: 20%
}

.first span {
    color: #ff0000
}

.first .slider::-webkit-slider-thumb {
    background: #ff0000
}

.first .slider {
    background: #ffbfbf
}

.second {
    width: 20%
}

.second span {
    color: #008000
}

.second .slider::-webkit-slider-thumb {
    background: #008000
}

.second .slider {
    background: #6feb8e
}

.third {
    width: 20%
}

.third span {
    color: rgb(0, 0, 255)
}

.third .slider::-webkit-slider-thumb {
    background: rgb(0, 0, 255)
}

.third .slider {
    background: #718afa
}

span {
    margin-right: 10px !important;
}