/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body, html {
    font-family: 'Lato', sans-serif; /* Body text font */
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a2540; /* Dark background */
    color: #333;
    text-align: center;
    overflow: hidden;
}

/* Coming Soon Container */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
}

/* Content Styling */
.content {
    max-width: 600px;
    padding: 2rem 2.5rem;
    background: #ffffff; /* White background for contrast */
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Softer shadow for a cleaner look */
    text-align: center;
}

/* Logo Styling */
.logo {
    max-width: 300px;
    width: 100%;
    margin-bottom: 1rem;
}

/* Headings */
h2 {
    font-family: 'IBM Plex Sans', sans-serif; /* Header font */
    font-size: 1.6rem;
    font-weight: 400;
    color: #6ec1e4; /* Earth-inspired blue */
    margin-bottom: 1.5rem;
}

/* Paragraph */
p {
    font-size: 1.1rem;
    color: #333;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.contact-info {
    margin-top: 1rem;
    font-size: 1rem;
    color: #0a2540;
}

.contact-info a {
    color: #0074d9;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Animation for Entry */
.content {
    animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}