main {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.8rem;
  align-items: start;
  justify-content: center;

  margin-top: 3rem;
}

.poem-wrapper {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: var(--color-grey-light);
  border: 3px solid var(--color-beige-dark);
  padding: .8rem;
  width: 320px;

  justify-self: center;
}

.poem {
  font-style: italic;
  line-height: 2rem;
  margin-top: 0;
}

.data {
  display: flex;
  justify-content: space-between;
}

footer {
  font-size: 15px;
  text-align: center;
  margin: 3rem 0 1rem;
}