body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff; /* White background */
    color: #000; /* Black text */
}

.container {
    text-align: center;
    padding: 20px;
    max-width: 900px; /* Adjust as needed */
    width: 100%;
}

.logo-section {
    display: flex;
    flex-direction: column; /* Stack on small screens */
    align-items: center;
    margin-bottom: 50px; /* Space between logo and text */
}

.logo {
    width: 1000px; /* Adjust logo size */
    height: auto;
    margin-bottom: 20px; /* Space between logo and text "ESNA AFRICA" */
}

.logo-section h1 {
    font-family: serif; /* Matches the font in the image */
    font-size: 5em; /* Adjust size as needed */
    margin: 0;
    line-height: 1;
}

.coming-soon-section {
    margin-top: 50px; /* Space between logo and coming soon section */
}

.coming-soon-text {
    font-size: 2.5em; /* Adjust size */
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 2px; /* Add some letter spacing */
}

.launch-text {
    font-size: 1.2em; /* Adjust size */
    margin-bottom: 30px;
}

.email-signup {
    display: flex;
    justify-content: center; /* Center the input and button */
    gap: 10px; /* Space between input and button */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.email-input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 250px; /* Fixed width for desktop */
    max-width: 80%; /* Fluid width for responsiveness */
    box-sizing: border-box; /* Include padding in width */
}

.pre-register-btn {
    padding: 12px 25px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pre-register-btn:hover {
    background-color: #333;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .logo-section {
        flex-direction: row; /* Align horizontally on larger screens */
        justify-content: center;
        align-items: flex-end; /* Align "ESNA AFRICA" with the bottom of the logo */
    }

    .logo {
        margin-right: 20px; /* Space between logo and "ESNA AFRICA" */
        margin-bottom: 0;
    }

    .logo-section h1 {
        font-size: 7em; /* Larger size for desktop */
    }
}

@media (max-width: 600px) {
    .logo {
        width: 300px; /* Smaller logo on small screens */
        margin-bottom: 0px;
    }

    .logo-section h1 {
        font-size: 3em; /* Smaller text on small screens */
    }

    .coming-soon-text {
        font-size: 1.8em;
    }

    .launch-text {
        font-size: 1em;
    }

    .email-signup {
        flex-direction: column; /* Stack input and button on very small screens */
        align-items: center;
    }

    .email-input {
        width: 100%; /* Full width on small screens */
        max-width: 300px; /* Limit max width even when stacked */
        margin-bottom: 10px; /* Space when stacked */
    }
}