// Создаем файл text-book.css
// Пример содержимого:

.text-book {
  width: 80%;
  margin: 20px auto;
  border: 1px solid #ccc;
  padding: 20px;
  font-family: sans-serif;
}

.text-book-content {
  text-align: justify;
  line-height: 1.6;
}

.text-book-navigation {
  text-align: center;
  margin-top: 20px;
}

.text-book-navigation a {
  margin: 0 10px;
}
