#countLabel{
    display:block;/*Label is an inline tag */
    /* background-color: antiquewhite; */
    text-align:center;
    font-size:10em; 
    font-family:Arial, Helvetica, sans-serif;  
}

#button-container{
    display:flex;
    justify-content:center;
}

#button-container .counter-buttons{
    height:50px;
    width:130px;
    margin:20px;
    color:rgb(27, 24, 62)
    
}

#button-container #decrease{
    background-color:rgb(228, 132, 132);
    font-size:1.2rem;
    border-radius:23px;
}

#button-container #reset{
    background-color:rgb(100, 255, 255);
    font-size:1.2rem;
    border-radius:23px;
}

#button-container #increase{
    background-color:rgb(117, 228, 80);
    font-size:1.2rem;
    border-radius:23px;
}

.counter-buttons:hover{
    cursor:pointer;
    background-color:bisque;
}
