body{
    background-color: #ff9d00;
    text-align: center;
    color: #ffda9e;
    text-shadow: 1px 1px 1px #5d3900, -1px -1px 5px #5d3900;
    font-family: 'Courier New', Courier, monospace;
}

#title{
    font-size: 3rem;
    margin: 20px auto;
    background-color: #5d3900;
    width: 50%;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ffda9e;
    text-shadow: 0px 0px 5px #000000;
}

#count{
    font-size: 5rem;
    margin: 0 auto;
}

.buttons{
    margin-top: 3rem;                       
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn{
    font-size: 20px;
    width: 75px;
    height: 75px;
    border: none;
    border-radius: 5px;
    background-color: #5d3900;
    color: #ffda9e;
    border: 2px solid #ffda9e;
    cursor: pointer;
    box-shadow: 0px 4px #3e2600;                        
}

#add, #sub{
    font-size: 60px;
}

.btn:active{
    box-shadow: 0px 0px #3e2600;
    transform: translateY(5px);
}