*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.back{
    background-color: #334a5d;
    padding: 5px;
}
button{
    display: inline-block;
    outline: 0;
    border: 0;
    cursor: pointer;
    background-color: #4299e1;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 16px;
    border-bottom: 4px solid #2b6cb0;
    font-weight: 700;
    color: white;
    line-height: 26px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
button:hover{
    background-color: #0585ef;
}
#InsertionSort:active {

    border-bottom: #2b6cb0;
    transform: translateY(4px);
  }
  #SelectionSort:active {

    border-bottom: #2b6cb0;
    transform: translateY(4px);
  }
  #BubbleSort:active {

    border-bottom: #2b6cb0;
    transform: translateY(4px);
  }
  #Random:active {

    border-bottom: #2b6cb0;
    transform: translateY(4px);
  }

.container{
    max-width: 100vw;
    width: au;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.bars_container{
    display: flex;
    flex-direction: row;
}

.bar{
    width: 10px;
    background-color:#adc4ed;
    margin: 0 2px;
    border-radius: 2px;
    transition: ease-in-out 0.35s;
    text-align: center;
}
.box{
height: 50px;
width: 50px;
border: 3px solid black;
margin: 0 0.0001px;
font-size: x-large;
text-align: center;
vertical-align: middle;
transition: ease-in-out 0.35s;
}

body{
    background-color:  white;}
