@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #141E30, #243B55);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 20px;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 2px;
}

h2 {
    font-size: 2rem;
    color: #00C9FF;
}

p {
    font-size: 1.2rem;
    margin: 20px 0;
    opacity: 0.8;
}

.countdown {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FF416C;
    margin-top: 30px;
}

footer {
    margin-top: 50px;
    font-size: 1rem;
    opacity: 0.7;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    p { font-size: 1rem; }
}
