@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


body {
    background-color: rgb(0, 4, 29);
    margin: 0;
}

.mainHeading {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

p{
    font-family: 'Montserrat', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;


    
}

.green_button {
    background: #108101;
    font-size: 15px;
    padding: 8px 16px;
    margin: 3px;
    border-radius: 4px;
    color: white;
    border: none;
    text-decoration: none;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    transition: 0.4s ease;
    cursor: pointer;
    text-transform: capitalize;
    font-family: 'Montserrat', sans-serif;
    transform: translateY(0);
}

#arrayBtn {
    background: #009591;
}

.green_button:hover {
    background: #0b5301;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.row_alignment {
    display: flex;
    flex-flow: row wrap;
}

.column_alignment {
    display: flex;
    flex-direction: column;
}


.fill {
    flex: 1 1 auto;
}


.barsStyle {
    background: yellowgreen;
    width: 45px;
    margin: 2px;
    transition: 0.4s ease;
    text-align: center;
    /* min-height: 40px; */
    font-weight: bold;
    color: white;
    border-radius: 4px;
    overflow: hidden;
    font-family: sans-serif;
    /*max-height: 360px;*/
}

.barsStyle span {
    background: rgba(0, 0, 0, 0.1);
    padding: 16px 0;
}

.barsStyle.highlight {
    background: rgb(146, 139, 250);
}


.barsStyle.working {
    background: rgb(255, 37, 115);
}

.barsContainer {
    display: flex;
    flex-direction: row;
    margin: 20px 10px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.4);
    align-items: flex-start;
    min-height: 380px;
}


::-webkit-scrollbar {
    width: 0;
    height: 0;
}