
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(255, 235, 211);
    font-size: 20px;
    padding: 0 20px 30px 0;
    line-height: 1.4;
}
h1{
    margin-top: 20px;
    margin-bottom:10px;
    margin-right: 20vw;
    margin-left: 20vw;
    text-align: center;
    font-size: 30px;
    background-color: #6f459e;
    color: white;
    border-radius: 19px;
    font-weight: bolder;
}
.flex-container{
    margin-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 500px;
    justify-content: center;
    transition: 2s all ease;
}

.flex-item{
    background: rgb(0, 183, 255);
    border: 1pt solid black;
    width: 35px;
    transition: 0.1s all ease;
}

.row{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    
}
.newArray{
    background-color:#6f459e ;
    border-color:#6f459e ;
    margin-left:30px;
}
.bubbleSort{
    background-color:#6f459e ;
    border-color:#6f459e ;
}
.mergeSort{
    background-color:#6f459e ;
    border-color:#6f459e ;
}
.quickSort{
    background-color:#6f459e ;
    border-color:#6f459e ;
}
.insertionSort{
    background-color:#6f459e ;
    border-color:#6f459e ;
}
.selectionSort{
    background-color:#6f459e ;
    border-color:#6f459e ;
}
#arr_sz{
    background:#6f459e ;
}
#input{
    display: flex;
    padding: 10px;
    justify-content: space-around;
}
