* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

#overallWrapper {
    background-color: bisque;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#simpleCounterWrapper {
    width: 400px;
    padding: 20px;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    box-shadow: 1px 2px 3px #777;


}

#simpleCounterWrapper h1 {
    width: 100%;
    text-align: center;
}

#simpleCounterWrapper p {
    font-size: 50px;
    text-align: center;
    margin: 20px 0px;
    width: 100%;

}

#increment, #decrement, #incrementWith2, #decrementWith2, #save, #reset {
    width: 49%;
    padding: 15px 20px;
    font-size: 20px;
    border: none;
    background-color: rgb(97, 13, 2);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;

}

#decrement {
   
    background-color: rgb(18, 80, 3);
    

}

#incrementWith2 {
   
    background-color: rgb(207, 41, 0);
    

}

#decrementWith2 {
    
    background-color: rgb(41, 207, 0);
    

}

#save {
    
    background-color: rgb(0, 3, 207);
    

}

#reset {
    
    background-color: rgb(207, 0, 0);
    

}


#decrement {
   
    background-color: rgb(18, 80, 3);

}

#clearTotal {
    width: 100%;
    padding: 15px 20px;
    font-size: 20px;
    border: none;
    background-color: rgb(245, 172, 13);
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 10px;

}
