h1 {
  color: var(--navy);
}
.about-flexbox {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;  /* centers all items vertically */
}

.images {
  display: flex;
  flex-direction: row;
  gap: 5px;
  flex-shrink: 0;
}

.images img {
  width: 300px;
  height: 400px;
  object-fit: cover;
}

.text {
  flex: 1;
  min-width: 200px;
}
.button {
  display: flex;
  justify-content: center;
  align-self: flex-end;  /* pushes button to bottom of the flex row */
}
.button-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--back);
  color: var(--link);
  text-decoration: none;
  border: 1.5px solid var(--link);
}
/* ON PHONE BEHAVIOUR */
@media (max-width: 700px) {
  .about-flexbox {
    flex-direction: column;
  }
  .images {
    flex-direction: column;  /* stack images vertically on mobile */
    width: 100%;
  }
  .images img {
    width: 100%;
    height: auto;
  }
  .text {
    max-width: 100%;
  }
  .button {
    align-self: flex-start;  /* back to normal on mobile */
    justify-content: flex-start;
  }
}