:root {
  color-scheme: light;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f6f0e5;
  color: #2f3328;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

main {
  width: min(860px, 100%);
  text-align: center;
}

img {
  display: block;
  width: 100%;
  max-height: 62vh;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 1.2rem 3rem rgb(60 51 35 / 18%);
}

h1 {
  margin: 1.5rem 0 .5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
}

p {
  margin: 0 auto;
  max-width: 44rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.6;
  color: #5d6253;
}
