* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
}

.coming-soon {
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(111, 213, 190, .16), transparent 26%),
    radial-gradient(circle at 90% 75%, rgba(111, 213, 190, .13), transparent 28%),
    #f7fbfa;
}

.coming-soon img {
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 768px) {
  body {
    overflow: hidden;
  }

  .coming-soon {
    padding: 0;
  }

  .coming-soon img {
    width: 100vw;
    height: 100svh;
    object-fit: contain;
    object-position: center;
  }
}

@media (orientation: portrait) and (max-width: 768px) {
  .coming-soon {
    background: #f7fbfa;
  }
}
