body {
    background-color: rgb(110, 110, 110);
    font-family: 'Gill Sans', 'Gill Sans MI',  'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
}

p {
    margin-top: 50px;
    opacity: 0.7;
}

.sliderContainer {
    width: 75%;
    margin-top: 200px;
}

.slider::after {
    content: '100';
    color: white;
    font-size: 2rem;
    position: absolute;
    left: 80%;
    top: 26%;
}

.slider::before {
    content: '0';
    color: white;
    font-size: 2rem;
    position: absolute;
    left: 12%;
    top: 26%;
}

.slider {
    -webkit-appearence: none;
    width: 100%;
    height: 20px;
    background-image: linear-gradient(90deg, rgb(117,252,117) 60%, rgb(214,214,214) 60%);
    outline: none;
    opacity: 0.7;
    -webkit-transition: 0.2s;
    transition: opacity 0.2s;
    border-radius: 12px;
    box-shadow: 0px 1px 10px 1px black;
}

.slider:hover {
    opacity: 1;
}

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

.slider::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
}