/* stylize at least text and range slider in HTML (10pts)

 */
body {
    background-color: white;
}

h1 {
    color: rgb(0, 179, 255);
    text-align: center;
}

.prompt {
    color: rgb(0, 179, 255);
    text-align: center;
}

.canvasStyle {
    width: 70%;
    height: auto;
    border: 4px solid rgb(19, 128, 0);
    display: block;
    margin: 0 auto;
    background-color: white;
}

.button {
    display: block;
    text-align: center;
}

.button button {
    font-size: 16px;
}

.radio {
    text-align: center;
}


.slidecontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



.slider {
    /* -webkit-appearance: none; */
    width: 50%;
    height: 25px;
    background: #bababa;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin: auto;
}


.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #04AA6D;
    cursor: pointer;
}


.lineWidth {
    display: block;
    text-align: center;
}


.value {
    text-align: center;
}