body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1e2124;
}

/*THIS IS THE CONTAINER THAT HOLD ALL OF THE BAR DATA*/
#visualizer-container {
    width: 100%;
    height: 60%;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    background-color: #424549;
    border-color: 	#282b30;
    border-style: solid;
    border-width: 15px;
    border-radius: 10px;
    box-shadow: 0 0 12px #D74B76;
}
/*THIS IS THE CONTAINER THAT HOLD ALL OF THE BAR DATA*/


/*STYLYZATION OF START SORTING BUTTON*/
#start-sort{
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    width: 150px;
    height: 50px;
    border: none;
    background-color: #424549;
    color: white;
    border-radius: 5px;
    box-shadow: inset 0 0 0 0 #D74B76;
    transition: ease-out 0.3s;
    outline: none;
}

#start-sort:hover{
    box-shadow: inset 150px 0 0 0 #D74B76;
}
/*STYLIZATION OF START SORTING BUTTON*/


/*STYLIZATION OF RESET BUTTON*/
#reset{
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    width: 150px;
    height: 50px;
    border: none;
    background-color: #424549;
    color: white;
    border-radius: 5px;
    box-shadow: inset 0 0 0 0 #D74B76;
    transition: ease-out 0.3s;
}

#reset:hover{
    box-shadow: inset 150px 0 0 0 #D74B76;
}
/*STYLIZATION OF RESET BUTTON*/


/*STYLIZATION OF DROPDOWN MENU BUTTON*/
#option{
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    width: 150px;
    height: 50px;
    border: none;
    background-color: #424549;
    color: white;
    border-radius: 5px;
    transition: ease-out 0.3s;
    padding-left: 30px;
    box-shadow: inset 0 0 0 0 #D74B76;
    transition: ease-out 0.3s;
}

#option:hover{
    box-shadow: inset 0 50px 0 0 #D74B76;
}
/*STYLIZATION OF DROPDOWN MENU BUTTON*/


/*THIS CONTROL THE RESET, START SORTING, AND THE DROP DOWN MENU*/
.master{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
/*THIS CONTROL THE RESET, START SORTING, AND THE DROP DOWN MENU*/


/*THIS CONTROL THE BAR THAT VISUALIZE THE DATA*/
.bar{
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    width: 20px; 
    margin: 0 3px;
    padding: 2px;
    background-color: #1e2124;
    color: #D74B76;
    font-size: 15px;
    display: flex;
    justify-content: center;  
    transition: transform 0.04s;
    box-shadow: 0 0 3px #1e2124;
    text-shadow: 0 0 1px #D74B76;
}
/*THIS CONTROL THE BAR THAT VISUALIZE THE DATA*/


/*THIS CONTROL THE GLOW AFTER THE SORT FINISH*/
@keyframes glow_red{
    0%, 100%{
        opacity: 0;
        box-shadow: none;
    }
    50%{
        opacity: 1;
        box-shadow: 0 0 12px #D74B76;
    }
}
.glow{
    animation-duration: 2s;
    animation-name: glow_red;
    animation-iteration-count: 1;
}
/*THIS CONTROL THE GLOW AFTER THE SORT FINISH*/


.bar:hover{
    transform: translateY(-10px)
}
