body {
    background-color: #93e3ee;
}

#numberCount {
    display: block;
    text-align: center;
    font-size: 10em;
    font-family: Arial, Helvetica, sans-serif;
    color: #da91be;
}

#btnContainer {
    text-align: center;
}

.btn {
    padding: 10px 20px;
    font-size: 1.5em;
    color: white;
    background-color: #da91be;
    border: inset;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.25s;
}

.btn:hover {
    background-color: #ac7296;
}