
#countLabel{
    display: block;
    text-align: center;
    font-size: 15em;
    font-family: fantasy;
    color: rgb(156, 205, 248);
}

#btncontainer{
    text-align: center;
}
.button{
    padding: 10px 20px;
    font-size: 1.5em;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-radius: 13px;
    cursor: pointer;
    transition: background-color 0.25s;
    border-color: transparent;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin-right: 25px;
    margin-top: 1.5vh;
}

.button:hover{
    background-color: rgb(248, 232, 5);
}
body{
    background: linear-gradient(to right, #272626,#1a1717 );
    text-align: center;
    margin-top: 12em;
}