.columns {
  display: flex;
  gap: 2rem;
}

.column {
  flex: 1;
}

.column h2 {
    margin-bottom: 0.5rem;
    font-size: 1.1em;
}

.column:first-child {
  flex: 0 0 250px;  
  max-width: 300px;
}

.column:last-child {
  flex: 1;  
}

.poem {
  margin: 2rem 0;
  padding: 1.5rem;
  /* border-left: 3px solid #6d4aff;
  background: #fafafa; */
}

.poem-stanza {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.poem-line {
  display: block;
  text-indent: 1.5rem;
}

/*
.poem-line:first-child {
  text-indent: 0;
} */