/* Sand, Pine and Charcoal from docs/brand.md; Jost, as in the app. */
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #EDE3D5;
  color: #3D3D3D;
  font-family: Jost, Futura, "Century Gothic", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
main {
  flex: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
main.text { align-items: flex-start; justify-content: flex-start; text-align: left; }
img { max-width: 100%; height: auto; }
h1 { margin: 0 0 12px; font-size: 28px; font-weight: 600; color: #0C4B41; }
p { margin: 0; }
footer { padding: 24px 16px; text-align: center; font-size: 15px; }
a { color: #0C4B41; text-underline-offset: 4px; }
a:focus-visible { outline: 2px solid #0C4B41; outline-offset: 2px; border-radius: 4px; }
