/* alma.css */

body {
  display: flex;
  flex-direction: column; /* stack direct children vertically */
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #9D9167; 
  font-family: "Charm", cursive;
  color: #442D1C;
  margin: 0;
  padding: 40px 20px;
  min-height: 100vh;
  max-width: 33vw; /* limit width to 1/3 page */
}

.poem-title {
  font-size: 6em;
  margin-bottom: 30px;
  text-align: left;
  width: 100%;
}

p {
  font-size: 2.5em;
  line-height: 1.6;
  margin: 0 0 15px 0;
  color: #442D1C;
  text-align: left;
  width: 100%;
}

.author {
  margin-top: 30px;
  font-style: italic;
  font-size: 2.3em;
  text-align: left;
  width: 100%;
}
