*{
    padding: 0;
    margin: 0;
}

body{
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center; 

}

.container{
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    border: 1px solid rgb(182, 135, 135);
    border-radius: 15px;
}


label{
    font-size: 35px;
}

#number{
    font-size: 80px;
}

#button button{
    font-size: 20px;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: transparent;
    transition: 800ms ease-in-out;
}

#button button:hover{
    background-color: rgb(38, 219, 90);
    /* transform: translateX(2); */
    transform: translateY(2px);
    color: white;
}