html {
  height: 100%;
  width: 100%;
}


.navigatorButtons {
  margin-top: 0;
  padding: 0vw;
}

div.navigatorButtons img#logo {
  height: 9.9vh;
}

.navigatorButtons div.buttons {
  float: right;
  margin: 3.75vw 0 1.2vw 0;
  padding: 0vw;
}

.navigatorButtons div.buttons a.button {
  display: block;
  float: right;
  padding: .2vw .4vw;
  margin: 0vw;
  font-size: 4vw;
}

.navigatorButtons div.buttons a.button:hover {
  background-color: #2e6a2f;
  color: white;
  border: solid .08vw #2e6a2f;
  border-radius: .6vw;
}

/* mobile */
@media (any-pointer: coarse) {

  /* touch screens */
  img.backgroundHeader {
    min-height: 17vh;
  }
}

/* desktop */
@media (any-pointer: fine) {
  img.backgroundHeader {
    /*min-height: 300px;*/
  }

  .navigatorButtons div.buttons a.button {
    font-size: 2.5vw;
    padding: .2vw 2vw;
  }

  .navigatorButtons div.buttons {
    margin: 78px 0 15px 0;
  }

  div.navigatorButtons img#logo {
    height: 17vh;
    margin-left: 2vw;
    padding-top: 2.1vh;
    margin-bottom: -.2vh;
  }
}

.frontPhotos {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10vw;
  margin-top: 10vw;
}

.frontPhoto1 {
  height: 30vw;
  width: auto;
  object-fit: cover;
  border-radius: 2vw;

}

.frontPhoto2 {
  height: 30vw;
  width: auto;
  object-fit: cover;
  border-radius: 2vw;

}

.frontPhoto3 {
  height: 30vw;
  width: auto;
  object-fit: cover;
  border-radius: 2vw;

}

button {
  background-color: #FFFFFF;
  border: .5vw solid #FFFFFF;
  border-radius: .5vw;
  margin: .2vw;
}

.testimonialsTitle {
  display: flex;
  justify-content: center;
  color: #2e692f;
  font-family: 'Oxygen', sans-serif;
  background-color: #B5D8CC;
}

/* teacher quote */
.testimonials {
  display: flex;
  justify-content: space-around;
  font-family: 'Oxygen', sans-serif;
  background-color: #B5D8CC;
}

/* teacher cite */
.bottomTestimonials {
  display: flex;
  justify-content: center;
  color: #2e692f;
  font-family: 'Oxygen', sans-serif;
  margin-top: -3vw;
  background-color: #B5D8CC;
}

/* mary r quote */
.lastTestimonial {
  display: flex;
  justify-content: center;
  font-family: 'Oxygen', sans-serif;
  background-color: #B5D8CC;
}

/* mary r cite */
.author {
  display: flex;
  justify-content: center;
  font-family: 'Oxygen', sans-serif;
  color: #2e692f;
  margin-top: -4vw;
  background-color: #B5D8CC;
}


h1 {
  font-family: 'Arapey', serif;
  font-size: 3.5vw;
}

li {
  font-family: 'Oxygen', sans-serif;

}

p {
  font-family: 'Oxygen', sans-serif;
  font-size: 2vw;
  padding: .5vw;
}

div.contactUs p {
  display: inline;
}

.container {
  position: relative;
  text-align: center;
  color: white;
}

.centerLogo {
  position: absolute;
  top: 15vw;
  left: 25vw;
  transform: translate(-5vw, -5vw);
  font-size: 4vw;
  color: white;
}

.sectionTitle {
  width: auto;
  text-align: center;
  font-family: 'Oxygen', sans-serif;
  font-size: 3vw;
  padding: .2vw 0vw;
  margin: .3vw 0vw 0vw 0vw;
  color: #FFFFFF;
  background-color: #2e692f;
}

.helpPage {
  display: flex;
  justify-content: center;
}


.entireHelpPage img {
  display: inline;
  width: 32vw;
  height: auto;
  border-radius: 2vw;
}

.donationList {
  font-family: 'Oxygen', sans-serif;
  font-size: 2vw;
  /*padding: 1vw;*/
  margin-top: -15vw;
  display: block;
  padding-left: 8vw;
  color: #2e692f;
  line-height: 3.5vw;
}

.donationFirstSen {
  font-size: 2vw;
  margin-left: 4vw;
  margin-top: 4vw;
}

.donaPic img {
  display: flex;
  align-items: flex-start;
  justify-content: right;
  height: 27vw;
  width: auto;
  border-radius: 2vw;
}

.entireDonatePage {
  /*margin-left: 4vw;*/
  margin-right: 1vw;
  margin-bottom: 1vw;
  font-family: 'Oxygen', sans-serif;
}

.bottomDonate {
  padding: 3vw;
  padding-top: 35vw;
  text-align: left;
  display: block;
}

.missionStatement {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}

.missionText {
  position: absolute;
  font-weight: bold;
  width: auto;
  font-size: 2vw;
  border: solid .4vw #2e692f;
  background-color: #2e692f;
  box-shadow: black .08vw;
  margin-bottom: 7.8vw;
  margin-top: -7.1vh;
  padding: .4vw;
  color: #ffffff;
}


.stat1 {
  margin-top: 9vw;
  margin-bottom: 5vw;
  height: 20vw;
  width: auto;
 padding: .8vw;
  display: flex;
  justify-content: space-evenly;
}


.fadeInLeft {
  -webkit-animation: fadeInLeft 1.2s both;
  -moz-animation: fadeInLeft 1.2s both;
  -o-animation: fadeInLeft 1.2s both;
  animation: fadeInLeft 1.2s both;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50vw);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-50vw);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-50vw);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50vw);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInTop {
  -webkit-animation: fadeInTop 1.2s both;
  -moz-animation: fadeInTop 1.2s both;
  -o-animation: fadeInTop 1.2s both;
  animation: fadeInTop 1.2s both;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20vw);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-moz-keyframes fadeInTop {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20vw);
  }

  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}

@-o-keyframes fadeInTop {
  0% {
    opacity: 0;
    -o-transform: translateY(-20vw);
  }

  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}

@keyframes fadeInTop {
  0% {
    opacity: 0;
    transform: translateY(-20vw);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInRight {
  -webkit-animation: fadeInRight 1.2s both;
  -moz-animation: fadeInRight 1.2s both;
  -o-animation: fadeInRight 1.2s both;
  animation: fadeInRight 1.2s both;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(50vw);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(50vw);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}

@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(50vw);
  }

  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50vw);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.hours {
  font-family: "arapey", serif;
  font-size: 2vw;
  margin-left: 6vw;
  margin-bottom: 1vw
}

.clothes {
  border: solid .08vw white;
  border-radius: 2vw;
}

article{
    border: solid 1vw #B5D8CC;
  color: #2e692f;
  background-color: #B5D8CC;
}
.credit{
  display:flex;
  justify-content:center;
}
div.credit center p {
  font-size: 1.5vw;
}
footer {
  columns: 25vw 3;
  margin: 0vw;
  /* width:100%;*/
}

.contactUs {
  text-align: left;
  margin-left: 2vw
}

.address {
  display: flex;
  justify-content: right;
  text-align: left;
  margin-right: 6vw;
}

.email {
  margin-left: 2vw;
}

.helpfooter {
  display: block;
  color: white;
}

.footLogo {
  display: flex;
  justify-content: center;
  width: 20vw;
  height: 10vw;
  margin-left: 5vw;
}

.ourGoal {
  padding: 2vw;
  margin-top: 4vw;
  line-height: 2.5vw;

}

a:link,
a:visited {
  background-color: #FFFFFF;
  color: #000000;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border: .00001vw solid #FFFFFF;
  border-radius: .1vw;
  padding: .1vw;
  margin: .5vw;
  font-family: 'Arapey', serif;
  font-size: 1.5vw;
  display: flex;
  flex-wrap: nowrap;
}

.ourGoal {
  margin: 1.95vw 1.95vw 1.2vw 1.95vw;
}


/* a:hover, a:active {
      box-shadow: 60% 60% black;
    } */

/* .logo{
  width:5%
  height:5%;
  display:flex;
  align-items:flex-start;
  padding-bottom:10%;
} */
.
