* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  background-color: #F5E6D7;
  font-family: sans-serif;
}

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

.coming-soon,
.logo {
  position: absolute;
  height: auto;
}

/* Desktop Layout */
@media (min-width: 768px) {
  .coming-soon {
    top: calc(4rem + 250px);
    right: calc(4rem + 250px);
    max-width: 30vw;
  }

  .logo {
    bottom: calc(4rem + 50px);
    left: calc(4rem + 50px);
    max-width: 35vw;
  }
}

/* Mobile Layout */
@media (max-width: 767px) {
  .coming-soon {
    top: 33%;
    left: 50%;
    transform: translateX(-50%);
    max-width: 70vw;
  }

  .logo {
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 70vw;
  }
}
