/* main CSS code */
*{
    font-family: 'Ubuntu', sans-serif;
    /* font-family: 'Roboto Mono', monospace; */
    font-size: large;
    font-weight: bold;
    text-transform: uppercase;
}

#top_heading{
    text-align: center;
    font-size: xx-large;
    font-weight: 700;
    padding: 19px;
    /* margin-bottom: 18px; */
}

.flex-container{
    margin-top: 20px;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 500px;
    justify-content: center;
    transition: 2s all ease;
}

.flex-item{
    background: cyan;
    border: 1pt solid black;
    width: 10px;
    transition: 0.1s all ease;
}

.row{
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
}

#input{
    display: flex;
    padding: 10px;
    justify-content: space-around;
}
body {
    font-size: 20px;
    padding: 0 20px 30px 0;
    line-height: 1.4;
    overflow: hidden;
}

.footer{
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0px;
}

.footer p{
    margin-bottom: 0px;
}

#array_speed{
    margin-left: 5px;
}

#generate_array{
    padding-right: 0px;
}
/* #array_speed ,
#array_size{
    padding-left: 5px;
} */