div.poem {
  /* used in poems with line breaks <br> */
  white-space: nowrap;
  overflow-x: auto;  /* TODO see if this works on mobile */
  line-height: 1.4;
  margin-bottom: 1em;
}

div.prose {
  line-height: 1.4;
  margin-bottom: 1em;
}

.text_title {
  font-weight: bold;
  font-size: 1.2em;
}

.italic {
  font-family: 'Times New Roman', Times, serif;
  font-style: italic;
}

div.img_poem {
  text-align: center;
  margin: 1em;
}

div.img_poem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* LARGE SCREENS */

@media (min-width: 900px) {
  div.img_poem img {
    max-width: 70%;
  }
}
