/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #1f4037, #99f2c8);
    font-family: 'Arial', sans-serif;
    color: #fff;
    min-height: 100vh; /* Changed from height to min-height for better footer positioning */
    display: flex;
    flex-direction: column; /* Allows footer to be placed at the bottom */
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    max-width: 800px;
    margin: 10px;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.description {
    margin-bottom: 30px;
}

.features {
    text-align: left;
    margin-bottom: 30px;
}

.features h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.features ul {
    list-style: none;
    padding-left: 0;
}

.features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 1em;
}

.coming-soon {
    font-size: 1.5em;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* Pulse animation for "Launching soon" text */
@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

/* Footer Styling */
.footer {
    margin-top: 0px;
    text-align: center;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

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

    .container {
        padding: 20px;
    }

    .features h2 {
        font-size: 1.5em;
    }

    .coming-soon {
        font-size: 1.2em;
    }

    .footer {
        font-size: 0.8em;
    }
}

