body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}

h1 {
    color: #648cff;
    font-size: 4em;
    text-align: center;
    margin: 0;
}

h2 {
    color: #2b2c2e;
    font-size: 2em;
    text-align: center;
    margin: 10px 0;
}

#countdown {
    color: #0a0e19;
    font-size: 3em;
    text-align: center;
    margin: 20px 0;
    border: 1px solid #0a0e19;
    border-radius: 10px;
    padding: 20px;
}

footer {
    color: #000;
    text-align: center;
    margin-top: 30px;
} 

@media (max-width: 1024px) {
    h1 {
        font-size: 3em;
    }

    h2 {
        font-size: 1.5em;
    }

    #countdown {
        font-size: 2.5em;
    }
}