html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: #ffffff;
    background: linear-gradient(to bottom, #0059b3, #001f4d);
    text-align: center;
}

/* Center content with flexbox */
body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
}

header h1 {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 3.5em; /* Slightly larger */
    font-weight: 700;
    margin: 0.3em 0;
    background: linear-gradient(to bottom, #fff5cc, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

main h2 {
    font-size: 1.1em;
    font-weight: 300; /* Lighter weight */
    margin: 1em 0;
    color: #e0e0e0;
    letter-spacing: 1px; /* Slightly increased letter spacing */
    line-height: 1.6; /* Balanced line height */
    animation: fadeIn 2s ease-in;
}

/* Add a simple hover effect for h3 */
main h3:hover {
    transform: scale(1.05);
    animation: hoverBounce 0.5s ease-in-out;
}

/* Coming Soon text */
main h3 {
    font-size: 2em;
    font-weight: 600;
    font-family: 'Fredoka One', Arial, sans-serif; /* Playful font */
    background: linear-gradient(to right, #ffc66d, #ff914d, #ff6347); /* Vibrant orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: bounce 1.8s infinite ease-in-out;
    margin-top: 1.5em;
}

/* Footer styling */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: #e0e0e0;
    font-size: 0.9em;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    margin: 0;
}

/* Add animation for smooth appearance */
main {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes hoverBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}