/* styles.css */
body {
    background-color: #121212; /* Dark background */
    color: white; /* Light text color for contrast */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full height of the viewport */
    text-align: center;
}

.image-container {
    text-align: center;
	border-radius: 10px; /* Slightly rounded corners */
}

.coming-soon-text {
    font-size: 2em;
    font-weight: bold;
    color: white; /* Ensure the text is visible on the dark background */
    margin-top: 20px;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .coming-soon-text {
        font-size: 1.5em; /* Smaller text on medium screens */
    }

    .image-container img {
        width: 80%; /* Make the image smaller on smaller screens */
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .coming-soon-text {
        font-size: 1.2em; /* Smaller text on very small screens */
    }

    .image-container img {
        width: 70%; /* Further reduce the image size for smaller screens */
    }
}