* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #f2e7d5;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coming-soon {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2e7d5;
}

.coming-soon img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-aspect-ratio: 3/2) {
  .coming-soon img {
    width: auto;
    height: 100vh;
  }
}
