* {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page {
  min-height: 100svh;
  width: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(10px, 3vw, 38px);
}

.hero-image {
  display: block;
  width: min(98vw, 1180px);
  height: auto;
  max-height: 94svh;
  object-fit: contain;
}

@media (max-width: 700px) {
  .page {
    padding: 4px;
  }

  .hero-image {
    width: 106vw;
    max-width: none;
    max-height: 94svh;
  }
}
