body {
  background-color: #f0ece0;
  color: #333333;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-y: auto;
}

.container {
  text-align: center;
  padding: 130px 20px 40px;
  max-width: 700px;
  width: 90vw;
  flex-grow: 1;
}

h1 {
  font-size: 3.5rem;
  margin: 0 0 25px;
  font-weight: normal;
}

.subtitle {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: #333333;
}

/* Abschnittsüberschriften */
h2 {
  font-size: 1.6rem;
  margin-top: 20px;
  margin-bottom: 20px;
  font-weight: normal;
}

/* Balken nach h1 und h2 */
h1::after,
h1::before,
h2::after {
  content: "";
  display: block;
  height: 6px;
  background-color: #000;
  margin: 25px auto 40px;
  /* Zufällige Breiten per CSS-Klassen (simuliert Zufall) */
  width: clamp(200px, 50vw, 500px);
}

/* Textabsätze */
p {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 30px;
}
a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
}
.impressum-link {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-size: 0.75rem;
  color: #666666;
  text-decoration: none;
  font-family: Arial, sans-serif;
  user-select: none;
}

.impressum-link:hover {
  color: #333333;
}
.back-link {
  position: fixed;                /* raus aus dem normalen Flow */
  top: 10px;                      /* Abstand von oben */
  left: 50%;                      /* horizontal zentriert */
  transform: translateX(-50%);   /* genau mittig */
  font-size: 0.85rem;
  color: #666666;
  background-color: #f0ece0;     /* Hintergrundfarbe an Seitenfarbe anpassen */
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 1000;                 /* sicher über anderem Inhalt */
  text-decoration: none;
  font-family: Arial, sans-serif;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #000000;
}

