body{
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

h1{
    margin-top: 40px;
    padding-bottom: 20px;
    text-decoration: underline;
}

button{
    background-color: #007bff;
    margin-right: 40px;
    height: 30px;
    width: 200px;
    border-radius: 100px;
    border: none;
    color: white;
    cursor: pointer;
}

button:hover{
    background-color: #0056b1;
}

#bar-container{
    height: 400px;
    margin: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    border: 1px solid grey;
}

.bar{
    background-color:#007bff;
    margin: 0px 1px;
    width: 20px; 
    /* transition: height 0.5s; */
}

