body{
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    background-color: #0f172a;
}
h1{
    color:#f8fafc;
}
#MainBtn {
    height: 80px;
    width: 160px;
    background-color: #8b5cf6;
    color: #f8fafc;
    font-size: 60px;
    transition: all 0.2s ease;
}

#MainBtn:hover {
    background-color: #a78bfa;
    color: #ffffff;
}

#MainBtn:active {
    background-color: #7c3aed;
    color: #ffffff;
}

#MainLabel{
    font-size: 100px;
    color: #38bdf8;
}
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: #00b3ff;
    text-decoration: underline;
}