#donation{
  display: flex; flex-direction: row-reverse; align-items: center; justify-content: space-around;
  height: 100%;
  padding: 60px 0;
  background: #eeeeee;
  flex-wrap: wrap;
}

.donation-text h1{
  font-size: 40px;
  line-height: 1.4;
  width: 500px;
}
.donation-text p{
  width: 600px;
  text-align: justify;
  margin-top: 20px;
}

.donation-img img{
  height: 250px;
}

@media screen and (max-width: 1024px){
  #donation{
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 700px){
  .donation-text h1{
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    padding: 0 30px;
  }
  .donation-text p {
    width: 100%;
    padding: 0 60px;
  }
  .donation-img{
    display: flex; justify-content: center;
  }
  .donation-img img{
    max-width: 80%;
    height: 80%;
  }
}