main {
  padding: 6em 1em;
}
.images img {
  width: 100%;
}
.img-description {
  font-size: 0.8em;
  font-style: italic;
  text-align: center;
}
.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 1em 0;
}
.ways-to-give {
  margin-top: 2em;
}
.section .words {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.choose-impact-button,
.custom-gift-button {
  padding: 1em;
  min-width: 15em;
  outline: none;
  cursor: pointer;
  background-color: transparent;
}
.choose-impact-button {
  color: #cb1b44;
  border: solid #cb1b44 2px;
}
.donation-story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
}
.donation-story-section .images {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.donation-story-section .images img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: 10% 30%;
  border-radius: 12px;
}
.desktop-only {
  display: none;
}
@media (min-width: 800px) {
  .mobile-only {
    display: none;
  }
  .desktop-only {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
    font-size: 1.15em;
  }
}
