body {
  background-color: aquamarine;
  color: #333; /* A dark color for the text, for better readability */
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.coming-soon-container {
  text-align: center;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white box for content */
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.coming-soon-container img {
  max-width: 200px; /* Adjust the size as needed */
  height: auto;
  margin-bottom: 20px; /* Space between the logo and text */
}

.coming-soon-container p {
  font-size: 1.5em;
  font-weight: bold;
  margin: 0;
}