.container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:flex-end;
}

.bar{
    border-style:solid;
    border-color: aliceblue;
    border-width: 2px;
    transition: height 0.2s;
    width: 20px;
    background-color: gray;
}

option{
    text-align: center;
}

select{
    width: 170px;
    color: rgb(238, 238, 238);
    margin: 10px;
    border-radius: 10px;
    background-color : rgb(0, 173, 181);
}

input{
    margin: 10px;
    box-shadow: 3px 3px rgb(57 62 70);
    text-align: center;
    border-style: solid;
    border-radius: 20px;
    background-color : rgb(0, 173, 181);
    color: rgb(238, 238, 238);
    transition: transform 250ms;
}

input:hover{
    transform: scale(1.4);
}

button{
    border-style: none;
    border-radius: 20px;
    background-color: rgb(0, 173, 181);
    color: rgb(238, 238, 238);
    transition: transform 250ms;
}

button:hover{
    transform: scale(1.15);
}

html{
    color: rgb(200, 196, 196);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: 100%;
    height: 100%;
    background: rgb(34, 40, 49);
}