* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff7f3;
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 42, 32, 0.18), transparent 28%),
    radial-gradient(circle at 86% 76%, rgba(239, 42, 32, 0.22), transparent 30%),
    linear-gradient(135deg, #fff7f3 0%, #ffffff 42%, #ffe6df 100%);
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

.coming-soon-wrap {
  width: min(100%, 1180px);
  display: grid;
  place-items: center;
  position: relative;
}

.coming-soon-wrap::before,
.coming-soon-wrap::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(239, 42, 32, 0.22);
  border-radius: 50%;
  z-index: 0;
}

.coming-soon-wrap::before {
  top: -52px;
  left: -56px;
}

.coming-soon-wrap::after {
  right: -48px;
  bottom: -54px;
  background: rgba(239, 42, 32, 0.08);
}

.coming-soon-image {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 1120px);
  max-height: calc(100vh - 72px);
  object-fit: contain;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(91, 24, 18, 0.18);
}

.is-loaded .coming-soon-image {
  animation: settle 420ms ease-out both;
}

@keyframes settle {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  body {
    padding: 18px;
  }

  .coming-soon-image {
    max-height: calc(100vh - 36px);
  }

  .coming-soon-wrap::before,
  .coming-soon-wrap::after {
    width: 96px;
    height: 96px;
  }
}
