:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f2ec;
  color: #1d1b18;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(246, 242, 236, 0.75), rgba(246, 242, 236, 1)),
    #f6f2ec;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 28px;
}

img {
  display: block;
  width: min(100%, 520px);
  max-height: min(76vh, 720px);
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(30, 24, 18, 0.18);
}

h1 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2.35rem);
  line-height: 1.05;
  font-weight: 650;
  letter-spacing: 0;
  text-align: center;
}
