*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#box{
    width: 300px;
    height: 200px;
    border: 2px solid black;
    margin: 100px auto;
    text-align: center;
    padding-top: 50px;
    background-color: rgb(191, 182, 182);
}
#numberInput{
    width: 100px;
    height: 60px;
    text-align: center;
    font-size: 20px;
    border: 2px solid gray;
    border-radius: 5px;
}
button{
    width: 80px;
    height: 40px;
    font-size: 14px;
   border: 2px solid gray;
   
   
}
#Increment{
    background-color: rgb(17, 255, 37);
}
#Decrement {
    background-color: rgb(255, 28, 28);
}
h2{
    text-align: center;
    margin-top: 50px;
    background-color: gray;
    color: white;
}
body{
    background-color: rgba(0, 50, 52, 0.695);
}