/* Basic reset for consistent styling across browsers */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Set a blue-themed background gradient */
body {
    background: linear-gradient(to right, #1E3C72, #2A5298, #3B8D99);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
}

/* Main container styling */
.container {
    max-width: 500px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Heading styling with blue shades */
h1 {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #E0EAF5; /* Light blue color */
}

/* Paragraph styling */
p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #C1D9F3; /* Softer blue color */
}

/* Countdown styling */
.countdown {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* Contact info styling */
.contact {
    font-size: 1em;
}

.contact a {
    color: #C1D9F3; /* Softer blue color */
    text-decoration: underline;
}

.contact a:hover {
    text-decoration: none;
    color: #E0EAF5; /* Light blue hover color */
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 2.5em;
    }

    p {
        font-size: 1em;
    }

    .countdown {
        font-size: 1.2em;
    }
}
