body {
  margin: 0;
  font-family: serif;
  color: #222;
}

/* Buch-Container in der Mitte */
.book {
  display: flex;
  justify-content: center;
  max-width: 1200px;  /* Breite des "Buchs" */
  margin: 0 auto;
  padding: 60px 40px;
  gap: 40px; /* Abstand zwischen den Seiten */
}

/* einzelne Seite */
.page {
  width: 50%;
  background: rgba(255, 255, 255, 0.8); /* leicht durchscheinendes Weiß */
  padding: 20px;
  border-radius: 8px;
  overflow-y: auto;
  max-height: 80vh; /* damit die Seite scrollbar bleibt */
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

/* linke Seite fixiert */
.page.left {
  position: sticky;
  top: 40px;
}

/* rechte Seite scrollt mit */
.page.right {
  position: relative;
}

a {
  color: darkred;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}