/*CSS for donation section*/

#donate {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-evenly;
}

#donate-holder{
  padding-top: 40px;
  padding-bottom: 40px;;
}

.donate-title{
  text-align: center;
  margin-top: 20px;
  font-size: clamp(0.7em, 2vw, 3.5em);
}

.NYAE-logo{
  width: 300px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

#donate .donorbox {
  height: 900px;
  width: 100%;
  margin: 20px 10px;
  max-width: 420px;
  min-width: 250px;
  max-height: none !important;
}

#donate #certificate {
  width: 100%;
  height: 100%;
  margin: 20px 10px;
  max-width: 430px;
  min-width: 250px;
}

/*changes from row layout to column and picture sizes so that the images don't get squished on mobile*/

@media only screen and (max-width: 1100px) {
  #donate #certificate, #donate .donorbox {
    max-width:400px;
  }
}

@media only screen and (max-width: 1100px) {
  #donate {
    flex-direction: column;
  }
}