/* styles.css - Impressum */

/* Grundlayout */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #222;
}

/* Überschriften */
h1 {
  font-size: 2.5rem;
  margin-bottom: 0.8em;
  color: #003366;
  font-weight: 700;
}

/* Absätze */
p {
  margin-bottom: 1em;
  font-size: 1.1rem;
  color: #333;
}

/* Links */
a {
  color: #007acc;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #005f99;
  text-decoration: underline;
  outline: none;
}

/* Strong-Tags für Hervorhebungen */
strong {
  color: #000;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    margin: 20px 15px;
    font-size: 1rem;
  }
}

