body {
    font-family: Verdana;
    background-color: rgb(202, 151, 0);
}

#countLabel {
    display: block;
    text-align: center;
    font-size: 10em;
    background-color: rgb(107, 255, 253);
    width: fit-content;
    margin: auto;
    border: solid 2px; box-shadow: 5px 5px 15px;
    border-radius: 20px;
}

#btnContainer {
    text-align: center;
}

.buttons {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.5em;
    color: rgb(0, 0, 0);
    background-color: rgb(145, 255, 81);
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.25s;
}

.buttons:hover {
    background-color: rgb(0, 182, 6);
    color: white;
    transform: translateY(-1px);
}

.buttons:active {
    background-color: rgb(8, 100, 11);
}