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

html, body {
  height: 100%;
  width: 100%;
  background: #f3ede0;
}

.coming-soon-wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.coming-soon-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* En pantallas pequeñas, que la imagen llene el ancho y se pueda hacer scroll si hace falta */
@media (max-width: 600px) {
  .coming-soon-wrapper {
    height: auto;
    min-height: 100vh;
    align-items: flex-start;
    padding: 0;
  }
  .coming-soon-image {
    width: 100%;
    height: auto;
  }
}
