/* Reset & Grundstruktur */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  /* Eine moderne, saubere und gut lesbare Schriftart */
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background-color: #1a1a1a;
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 18px;
}

/* Layout */
body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Typografie */
h1, h2, h3, h4 {
  color: #fff;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  /* Ein klares, schönes Türkis-Grün */
  color: #00cccc;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.2rem;
}

/* Links */
a {
  color: #00cccc; /* Der neue Türkis-Grün-Ton */
  text-decoration: none;
  border-bottom: 1px dotted #00cccc;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

/* Listen */
ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

li::before {
  content: '>';
  position: absolute;
  left: 0;
  color: #00cccc;
}

/* Zitate */
blockquote {
  border-left: 3px solid #333;
  padding-left: 1rem;
  margin: 1.5rem 0;
  color: #aaa;
  font-style: italic;
}

/* Code */
pre, code {
  background: #222;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  /* Zurück zur ursprünglichen Monospace-Schrift */
  font-family: 'Courier New', monospace;
  color: #00cccc;
}

/* Footer */
footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
}
