body, html {
    height: 100%;
    margin: 0;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    background-color: #ffffff; /* Placeholder for background color */
}

.logo img {
    max-width: 150px; /* Adjust size as needed */
}

.content h1 {
    color: #00529B; /* Sample color based on the blue in your logo */
    margin: 0;
    font-size: 2.5em;
}

.content p {
    color: #666666; /* Sample color for the text */
    font-size: 1em;
}

.background-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
}

/* This ensures that the logo and 'Coming Soon' text appear above the background */
.logo, .content {
    position: relative;
    z-index: 1;
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
