.bar{
    background-color: rgb(2, 31, 84);
    margin: 50px 3px;
    width: 10px;
    
}

body{
    background: #0E7EF6;
    background: -moz-linear-gradient(top, #61adfd 0%, #de8cfa 23%, #DABEBA 100%);
    background: -webkit-linear-gradient(top, #0E7EF6 0%, #CC6EEC 23%, #DABEBA 100%);
    background: linear-gradient(to bottom, #0E7EF6 0%, #CC6EEC 23%, #DABEBA 100%);
}

.navbar{
    /* border: 2px rgb(81, 56, 189) solid; */
    box-shadow: 2px 2px 7px 1px #1C6EA4;
    background-color: rgb(212, 212, 243);
}

.flex{
     
}

label{
    font-size: large;
    margin-right: 10px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: rgb(4, 3, 77);
    cursor: pointer;
}

.slider{
    -webkit-appearance: none;
    height: 15px;
    border-radius: 5px;
    background: #cef0f1;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

#delayTime {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#title{
    font-size: 2rem;
    color: white;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 27px;
    letter-spacing: 2.6px;
    word-spacing: 6px;
    font-weight: 700;
    text-decoration: none solid rgb(68, 68, 68);
    font-style: italic;
    font-variant: small-caps;
    text-transform: capitalize;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.68);
    font-weight: 700;
    font-family:Arial, Helvetica, sans-serif;
}

#bars-container{
    width: 80vw;
    box-shadow: 2px 2px 7px 1px #1C6EA4;
    height: 600px;
    border-radius: 10px;
   
    background-color: rgb(212, 212, 243);
    margin: auto;
    align-items: flex-end;

}

section{
 
    height: 80vh;
    display: flex;
    margin: auto;
}


@media only screen and (max-width: 600px) {
    .bar-container{
        width: 90%;
    }
    h1{
        font-size: 2rem;
        margin: 20px auto;
    }
    .button{
        display: none;
    }
    .button-list ul{
        height: 200px;
        flex-direction: column;
        justify-content: center;
    }
    .button-list ul li button{
        margin: 5px;
    }
    .sortingAlgorithms{
        display: block;
        margin: 10px;
    }
    #responsiveRange{
        display: block;
    }
    #range{
        display: none;
    }
}

