:root {
  color-scheme: light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #153f56;
  background: #f7f6f0;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.2;
}

p { line-height: 1.6; }
a { color: inherit; text-underline-offset: .25em; }
a:focus-visible { outline: 3px solid currentColor; outline-offset: 6px; }
