.donateFlex{
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  background-color: #cedeeb;
  font-family: 'Mulish', sans-serif;
  padding-bottom: 5%;
  color: #2b4743;
  font-size: 1vw;
  height: 70vh;

}
.donateFlex div{
  width: 100%;
}
.donateInfo p{
  font-size: clamp(18px, 2vw, 24px);
  padding-left: 10%;
}
.donateBox h3{
  font-size: clamp(40px, 3vw, 50px);
  padding-left: 15%;
  margin-bottom: 0;
  padding-top: 7%;
}
.donateButton{
  background-color: #8c3839;
  margin-top: 2vw;
  font-family: 'Mulish', sans-serif;
  border: none;

  color: white;
  border-radius: 4vw;
  cursor: pointer;
  font-weight: bold;
  margin-left: 2%;
  transition: box-shadow 0.15s, opacity .15s;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 5%;
  padding-right: 5%;
  font-size: 2vw;
  padding: 1vw 2vw;

}
.donateForm{
  padding-top: 10%;
  margin-left: 0;
  display: flex;
  justify-content: center;
}
.donateForm div{
 width: 30vw;
 padding-left: 0;
}
.paymentMethods img {
  height: 2vw; /* Adjust the size as needed */
  width: 4.5vw;
  margin-right: 7%; /* Space between images */
}
.paymentMethods img:last-child{
  margin-right: 0;
}
.paymentMethods {
  text-align: center; /* Center align if you prefer */
  margin-top: 5%; /* Spacing above the payment method images */
  display: flex;
  flex-direction: row;
  width: 100%;
}
#donationAmount::placeholder {
  color: #999;
  font-style: italic;
  font-size: 2vw;
}

#donationAmount{
  width: 27vw;
  height: 5vw;
  margin-left: 0;
  font-size: 2vw;
  border: none;
  text-align: center;
  position: relative;
  border: none;
  padding-left: 0%;
  width: 100%;
}
@media screen and (max-width: 768px){


  .donateFlex{
    flex-direction: column;
    align-items: center;
    font-size: 5vw;
  }
  .donateInfo p{

    padding: 0 10%;
  }
  .donateInfo h3{
    padding-left: 0;
  }
  .donateForm div{
    width: 50vw;
  }
  .donateForm{
    padding-top: 2%;
  }
  #donationAmount{
    height: 10vw;
    font-size: 18px;
  }
  #donationAmount::placeholder{
    font-size: 18px;
  }
  .donateButton{
    width: 150px;
    font-size: 24px;
  }
  .paymentMethods img {
    height: 5vw; /* Adjust the size as needed */
    width: 7.3vw;
    margin-right: 7%; /* Space between images */
  }
  

}