/* style.css */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #f6f3ef;
  color: #222;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  max-width: 680px;
  background: #fff;
  padding: 48px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

h1 {
  margin-top: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

h1 img {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
}
