#history { 
  width: 100%;
  max-width: 64em;
  margin: auto;
}

#history h1 {
  margin: 1em;
}

#history > div {
  display: flex;
  padding: 2em;
  align-items: center;
}

#history > div:nth-of-type(odd) {
  flex-direction: row-reverse;
}

#history p {
  margin: 1em;
  text-align: justify;
}

#history figure {
  width: 38%;
  flex-shrink: 0;
}

#history figcaption {
  margin: 1em;
}

#history > div:last-child {
  flex-direction: column;
}

#history > div:last-child figure {
  width: 100%;
  flex-shrink: 1;
  padding: 1em;
}

#history > div:last-child img {
  width: 100%;
}

@media (max-width: 46rem) {
  #history > div {
    flex-direction: column;
    padding: 0 2em;
  }
  #history > div:nth-of-type(odd) {
    flex-direction: column;
  }
  #history figure {
    width: 100%;
    flex-shrink: 1;
    padding: 1rem;
  }
  #history img {
    width: 100%;
  }
}
