/* Small Logo in Top Left Corner */
.small-logo {
  position: absolute; /* Keeps the small logo in the top-left corner */
  top: 10px;
  left: 10px;
  max-width: 100px; /* Restrict maximum size */
  height: auto; /* Maintain aspect ratio */
}

/* Centralized Content */
.center-content {
  display: flex; /* Flexbox for vertical alignment */
  flex-direction: column;
  align-items: center; /* Center align both horizontally and vertically */
  justify-content: center;
}

/* Large Logo in Center */
.large-logo {
  max-width: 300px; /* Restrict maximum size for the central logo */
  height: auto; /* Maintain aspect ratio */
}

/* Coming Soon Text Styling */
.coming-soon {
  margin-top: 20px;
  font-size: 24px; /* Default font size */
  font-weight: bold; /* Emphasized text */
  color: #333; /* Neutral dark gray */
  text-align: center; /* Center the text */
}

/* Responsive Design Adjustments for Small Screens */
@media (max-width: 600px) {
  .small-logo {
    max-width: 80px; /* Smaller top-left logo */
  }

  .large-logo {
    max-width: 200px; /* Smaller central logo */
  }

  .coming-soon {
    font-size: 18px; /* Smaller text on small screens */
  }
}

/* Responsive Design Adjustments for Large Screens */
@media (min-width: 1200px) {
  .large-logo {
    max-width: 400px; /* Larger central logo */
  }

  .coming-soon {
    font-size: 28px; /* Larger text on big screens */
  }
}
