body {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #ffcc8e;
    font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;

}

#main {

    display: flex;
    flex-direction: column;
    gap: 25px;
}

.button {
    position: relative;
    display: inline-block;
    margin: 20px;
}

.button span {
    color: white;
    font-family: Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 36px;
    text-align: center;
    text-decoration: none;
    background-color: #FFA12B;
    display: block;
    position: relative;
    padding: 20px 40px;

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-shadow: 0px 1px 0px #000;
    filter: dropshadow(color=#000, offx=0px, offy=1px);

    -webkit-box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    -moz-box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    box-shadow: inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.button span:active {
    top: 10px;
    background-color: #F78900;

    -webkit-box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
    -moz-box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
    box-shadow: inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
}

.button:after {
    content: "";
    height: 100%;
    width: 100%;
    padding: 4px;
    position: absolute;
    bottom: -15px;
    left: -4px;
    z-index: -1;
    background-color: #2B1800;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}






#countLabel {
    display: block;
    text-align: center;
    font-size: 8rem;
}

/* #display-box{
    width: 42%;

  } */


  
#history{
    width: 50%;
    
}

table{
    width: 100%;
    border-radius: 20px;
    background-color: #f788005f;


}
table , tr , th , td{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 8px;
/* border-color: #5b518660; */
text-align: center;
border-collapse: collapse;
border: none;

}
