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

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #f7f7f7;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 100vh;
  padding: 2rem 1.5rem;
  text-align: center;
}

h1 {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
}

.hero-image {
  display: block;
  width: min(100%, 28rem);
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.12);
}
