* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background-color: #000000;
}

.top-panel {
  width: 100%;
  height: 150px; /* Increased height */
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #333; /* subtle line */
}

.logo {
  max-height: 120px;
}

.coming-soon-img {
  height: calc(100% - 120px); /* Fill the remaining space */
  display: flex;
  justify-content: center;
  align-items: center;
}

.coming-soon-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
