body {
  font-size: 1.2rem;
  margin: 0;
  padding: 0 2rem 4rem 2rem;
  background: #222;
  color: #eee;
  font-family: "Courier New", Courier, "Lucida Console", "DejaVu Sans Mono", monospace;
  line-height: 1.5;
}

/* Zeilenbreite: ca. 60 Zeichen */
#content {
  max-width: 60ch;
  margin: 0 auto;
}

/* Bild mittig, oben/unten Abstand, keine Seitenabstände */
#content img {
  border: 2px solid #fff;
  display: block;
  margin: 2rem auto;   /* oben/unten 2rem, rechts/links auto */
  max-width: 100%;     /* passt sich der Breite des Containers an */
  height: auto;
  padding: 0;
  box-shadow: 2px 2px 8px 2px rgba(0, 0, 0, 1);
}

p {
  margin: 0.5em 0 0.75em 0; /* halbe Zeile Abstand ≈ 0.75em */
}

a {
  text-decoration: none;
  color: rgb(37, 102, 175);
  font-weight: 600;
}

h1, h2, h3 {
  font-size: 1em;
  font-weight: normal;
  text-decoration: none;
  margin: 1.5em 0 0.75em 0;  /* oben 1.5 Zeilen, unten 0.5 Zeilen */
  border: none;
}

h1::before,
h2::before,
h3::before {
  content: "- ";
}

figure {
  margin: 0;
  padding: 0;
}

figcaption {
  padding: 0;
  margin: 0;
}

#meta-nav {
  font-size: 0.9rem;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0;
  margin: 0.5rem 0 0 0;
  background-color: #222;
}

/* nonobtrusive */
p.nob {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 480px) {
  body {
    padding: 0 1rem 4rem 1rem;
    line-height: 1.6; /* etwas luftiger */
  }
  .content {
    max-width: 90vw; /* nicht zu schmal auf kleinen Displays */
  }
}
