#countLabel{
    display: block;
    text-align: center;
    font-size: 10em;
    font-family: Helvetica;
}
#btnContainer{
    text-align: center;
}
.buttons{
    padding: 10px 20px;
    font-size: 1.5em;
    color: white;
    background-color: rgb(218, 163, 163);
    border-style: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.25s;
}
.buttons:hover{
    background-color: white;
    color: rgb(218, 163, 163);
}

body{
    background-color: rgb(255, 255, 255);
    color: rgb(218, 163, 163);
    width: fit-content;
    padding: 15px;
    border-style: none;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: auto;
    margin-top: 5em;
    background-size: 20px 20px;
    background-image:
        linear-gradient(to right, #EBC3C1 1px, transparent 1px),
        linear-gradient(to bottom, #EBC3C1 1px, transparent 1px);
}
.divcontainer{
    padding: 20px;
    border-style: solid;
    border-radius: 20px;
    border-color: rgb(218, 163, 163);
    background-color: white;
    align-items: center;
}
h3{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 20px;
    border-style: solid;
    border-radius: 20px;
    border-color: rgb(218, 163, 163);
    background-color: white;
    
}