body {
  margin: 0;
  padding: 0;
  height: 100vh;
  position: relative;
  overflow: hidden;
  background-color: #000;
}

body::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 50vh;
  background-image: url('../png/multi-color-no-background-text.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 4rem);
  width: 100%;
  padding-bottom: 4rem;
}

.coming-soon {
  font-size: 1.3rem;
  color: #ffffff;
  text-align: center;
  margin: 0;
  font-family: Arial, sans-serif;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  position: fixed;
  top: calc(50% + 25vh + 1rem); /* 50% (center) + 25vh (half logo height) + 1rem spacing */
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  color: #B0C4DE;
  text-align: center;
  padding: 1rem;
  z-index: 4;
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
}

/* Landscape mode adjustments */
@media screen and (orientation: landscape) and (max-height: 600px) {
  .coming-soon {
    top: calc(50% + 25vh + 0.5rem);
    font-size: 1.1rem;
  }

  footer {
    padding: 0.5rem;
    font-size: 0.5rem;
  }
}

/* Mobile portrait adjustments */
@media screen and (orientation: portrait) and (max-width: 768px) {
  body::before {
    width: 60vw;
    height: 60vh;
  }

  .coming-soon {
    top: calc(50% + 30vh + 1.5rem); /* Adjusted for larger mobile logo */
  }
}

/* Desktop adjustments */
@media screen and (min-width: 769px) {
  body::before {
    width: 40vw;
    height: 40vh;
  }

  .coming-soon {
    top: calc(50% + 20vh + 2rem); /* Adjusted for smaller desktop logo */
    font-size: 1.5rem;
  }
}