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

html, body {
  height: 100%;
}

body {
  min-height: 100%;
  /* Matches the logo artwork's own background so the image does not read as a
     lighter rectangle on the page. The supplied asset is #f8efe6, not #f4efe6. */
  background: #f8efe6;
  color: #161616;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8vh 6vw 10vh;
  gap: 2.4rem;
}

.mark {
  display: block;
  width: min(420px, 78vw);
  height: auto;
}

.soon {
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 400;
  color: #161616;
  text-align: center;
  padding-left: 0.42em;
}

@media (max-width: 640px) {
  .page {
    gap: 1.8rem;
  }
}
