.background-flexbox {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;  /* centers all items vertically */
}

.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) {
.background-flexbox {
  flex-direction: column;
  margin-left: 0;
  padding-left: 0;
}
.text {
  max-width: 100%;
  min-width: 0;
}
.button {
  align-self: flex-start;  /* back to normal on mobile */
  justify-content: flex-start;
}
}