/* Plain-Text-Style */
html, body {
  margin: 0;
  padding: 1em;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.4;
  background: #fff;
  color: #000;
}

/* Alle HTML-Elemente gleich behandeln */
h1, h2, h3, h4, h5, h6,
p, div, section, article,
ul, ol, li, blockquote,
pre, code {
  all: unset;
  font-family: monospace;
  font-size: 16px;
  line-height: 1.4;
  display: block;
  white-space: pre-wrap;
}

/* Links nur als Text */
a {
  all: unset;
  cursor: pointer;
  color: inherit;
  text-decoration: underline;
}