/* Tokens de marca. Fuente: 01_Identidad_visual/Manual_de_marca.md */
:root {
  --gruen: #79AD67;
  --kohle: #2B2B2B;
  --papier: #F9F9F9;
  --hell: #F1F1EF;

  --schrift-titel: "Roboto Slab", Georgia, serif;
  --schrift-text: Inter, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --rand: 24px;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  padding: 0 var(--rand);
  background: var(--papier);
  color: var(--kohle);
  font-family: var(--schrift-text);
  font-size: 18px;
  line-height: 1.6;
  display: grid;
  place-items: center;
}

main {
  width: 100%;
  max-width: 560px;
  text-align: left;
  padding-block: 48px;
}

.logo { width: 260px; max-width: 100%; height: auto; display: block; }

h1 {
  font-family: var(--schrift-titel);
  font-weight: 300;
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1.2;
  margin: 40px 0 0;
  text-wrap: balance;
}

.tilde { width: 48px; height: auto; display: block; margin: 20px 0 0; }

p { margin: 20px 0 0; max-width: 46ch; }

a { color: var(--kohle); text-decoration-color: var(--gruen); text-underline-offset: 4px; }
a:hover { color: var(--gruen); }
a:focus-visible { outline: 2px solid var(--gruen); outline-offset: 3px; }

footer { margin-top: 48px; font-size: 15px; }
