
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 60px 20px;
  background: #02240f;        /* mørk grøn */
  color: #f2f68c;             /* soft yellow text */
  text-align: center;
}

/* === OVERSKRIFT === */

h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #f2f68c;

  /* ingen baggrund – i sektionen du viste er teksten direkte ovenpå baggrundsfarven */
  letter-spacing: 0.02em;
}

/* Undertekst */
body > p {
  font-size: 1.15rem;
  color: #f2f68c;             /* samme gul */
  opacity: 0.85;
  margin: 8px 0;
}

/* === KNAPPER (Understory CTA style) === */

button {
  background: #f7ff84;          /* bright yellow */
  color: #02240f;               /* mørk grøn tekst */
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  margin: 12px 12px 20px;
  font-weight: 600;

  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);   /* kraftig CTA shadow */
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}

/* Hover */
button:hover {
  background: #eefb6e;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* Klik */
button:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(0,0,0,0.28);
}

/* === LINKS === */

a {
  text-decoration: none;
  color: #f7ff84;               /* samme som CTA */
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}