body{
    font-family: Helvetica;
    background-color:#282A36;
}

#count{
    display:block;
    text-align: center;
    font-size: 5em;
    font-family: Helvetica;
    color:#8BE9FD;
}

h1{
    text-align: center;
    color:#8BE9FD;
}
#btnContainer{
    text-align: center;
}
.button{
    padding: 10px 20px;
    font-size: 1.5em;
    color: #F8F8F2;
    background-color: #6272A4;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.25s, transform 0.05s ease;
}
.button:active{
    background-color: #505367;
}
.button:hover{
    background-color: #6272A4;
    transform: translateY(1px);
}
footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-family: sans-serif;
    font-size: 14px;
    color: #6272A4;
}

footer a {
    color: #8BE9FD;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #50FA7B;
    text-decoration: underline;
}