body{
    margin:0;
    height:100vh;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    font-family:"Ubuntu Mono", monospace;
    color:white;
    background:#0b0b0b;
    user-select: none;
}
#bg{
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;
    filter: blur(30px);
}
h1{
    font-size:2rem;
}
.countdown{
    margin-top:20px;
    font-size:1.6rem;
    font-weight:bold;
}
.date{
    background-color: #33333373;
    padding: 5px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}
.small{
    font-size: 10px;
}
a{
    color: #c5a1ff;
}
button{
    background-color: #33333338;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    font-family: "Ubuntu Mono", monospace;
    font-size: 18px;
    color: white;
    backdrop-filter: blur(20px);
}