.header {
  position: relative;
  display: grid;
  box-sizing: border-box;
  width: 100%;
  min-width: 750px;
  height: 35%;
  grid-template-rows: 35% 18% 10% 10% 7% 10% 10%;
  grid-template-columns: 100%;
  justify-content: center;
  margin: 0px;
  padding: 0px;
  border: none;
}

.body {
  margin: 0px;
  padding: 0px;
}

.navBar {
  display: grid;
  box-sizing: border-box;
  width: 75%;
  height: 100%;
  grid-template-columns: 1fr 70px 70px 135px 95px 90px 85px 1fr;
  grid-template-rows: 100%;
  justify-content: center;
  justify-self: center;
  border-top: 1px solid darkgrey;
  border-bottom: 1px solid darkgrey;
}

.navBar a {
  justify-self: center;
  color: darkgrey;
  margin-top: 4px;
  text-decoration: none;
  font-size: 15px;
}

/* unvisited link */
.navBar a:link {
  color: darkgrey;
}

/* visited link */
.navBar a:visited {
  color: darkgrey;
}

/* mouse over link */
.navBar a:hover {
  color: skyblue;
}

/* selected link */
.navBar a:active {
  color: skyblue;
}

#logo {
  object-fit: scale-down;
  grid-area: 2 / 1 / 3 / 2;
  max-width: 50%;
  max-height: 100%;
  margin: 0%;
  padding: 0%;
  justify-self: center;
}

#headerName {
  grid-area: 3 / 1 / 4 / 2;
  text-align: center;
  font-size: 20px;
}

footer {
  display: grid;
  width: 100%;
  min-width: 750px;
  height: 25%;
  padding-top: 1%;
  grid-template-rows: 30% 30% 40%;
  grid-template-columns: 100%;
}

footer p {
  padding-bottom: 1%;
  text-align: center;
  font-size: 14px;
}

#socialMedia {
  display: grid;
  justify-self: center;
  align-content: center;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 100%;
  width: 120px;
  height: 100%;
  padding-bottom: 2%;
}

#socialMedia a {
  justify-self: center;
  align-self: center;
}

/*
Rest of styling:
*/

/*Home styling below:*/
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  min-width: 750px;
  height: 50%;
  position: relative;
  margin: 0px;
  padding: 0px;
  justify-self: center;
  align-self: center;
}

.mySlides {
  width: 100%;
  height: 100%;
  justify-self: center;
  align-self: center;
  margin: 0%;
  padding: 0%;
}

.image1 {
  margin: 0%;
  padding: 0%;
  min-height: 600px;
  height: 115vh;
  width: 100%;
  background: url("assets/crowdCheering.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-rows: repeat(4, 25%);
  grid-template-columns: repeat(4, 25%);
}

.image2 {
  margin: 0%;
  padding: 0%;
  min-height: 600px;
  height: 115vh;
  width: 100%;
  background: url("assets/highFives.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-rows: repeat(4, 25%);
  grid-template-columns: repeat(4, 25%);
}

.image3 {
  margin: 0%;
  padding: 0%;
  min-height: 600px;
  height: 115vh;
  width: 100%;
  background: url("assets/onlineLearning.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  display: grid;
  grid-template-rows: repeat(4, 25%);
  grid-template-columns: repeat(4, 25%);
}

.image4 {
  margin: 0%;
  padding: 0%;
  min-height: 600px;
  height: 115vh;
  width: 100%;
  background: url("assets/remoteLearning.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-rows: repeat(4, 25%);
  grid-template-columns: repeat(4, 25%);
}

.image5 {
  margin: 0%;
  padding: 0%;
  min-height: 600px;
  height: 115vh;
  width: 100%;
  background: url("assets/volunteer/books.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-rows: repeat(4, 25%);
  grid-template-columns: repeat(4, 25%);
}

.OurVision {
  font: var(--font_9);
  color: rgb(var(--color_15));
  text-align: center;
  grid-area: 2 / 2 / 4 / 4;
  margin: 0%;
  padding: 0%;
  z-index: 2;
  background-color: white;
  overflow: auto;
}
.OurVision p {
  padding-top:0%;
  font-size: 15px;
}

.OurVision #ourVisionTitle {
  padding-bottom: 0%;
  padding-top: 4% !important;
  font-size: 40px !important;
}

#learnMoreSpacer {
  padding-top: 7%;
}

#learnMore {
  text-decoration: none;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 15px;
  padding-left: 15px;
  border: 1px solid deepskyblue;
  background-color: white;
  font-size: 15px;
}

/* unvisited link */
#learnMore:link {
  color: skyblue;
}

/* visited link */
#learnMore:visited {
  color: skyblue;
}

#learnMore:hover {
  background-color: royalblue;
  border: 1px solid royalblue;
  color: white;
  transition: color 0.25s, background-color 0.5s, border 0.25s;

}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171 !important;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.text {font-size: 11px}
}

/*About styling below:*/
#aboutBackground {
  position: relative;
  display: grid;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  width: 100%;
  min-width: 750px;
  height: 115vh;
  min-height: 800px;
  grid-template-rows: repeat(100, 1%);
  grid-template-columns: repeat(100, 1%);
  background: url("assets/about/clockAndPlant.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#aboutImage {
  object-fit: scale-down;
  grid-area: 15 / 10 / 85 / 45;
  margin: 0%;
  padding: 0%;
  min-width: 450px;
  background-repeat: no-repeat;
  background: url("assets/about/aboutImage.jpg");
  background-size: cover;
  background-position: center;
}

#aboutDescription {
  object-fit: scale-down;
  grid-area: 23 / 39 / 78 / 68;
  background-color: white;
  min-width: 375px;
  margin: 0%;
  padding: 0%;
  overflow: auto;
}
#aboutDescriptionTitle {
  text-align: left;
  padding-left: 10% !important;
  padding-right: 25% !important;
  padding-top: 3% !important;
  font-size: 35px !important;
  line-height: 12px !important;
}

#aboutDescription p {
  text-align: left;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 13px;
  line-height: 1.5em;
}

/*Meet the team styling below:*/

.teamMemberWrapper {
  display: flex;
  flex-flow: wrap;
  width: 80%;
  min-width: 750px;
  margin-right: 10%;
  margin-left: 10%;
  justify-content: center;
}

.teamMember{
  display: inline-block;
  width: 225px;
  margin: 30px;
  justify-content: center;
  text-align: center;
}

.teamMemberImage {
  width: 225px;
  height: 225px;
  border-radius: 50%;
}

#memberName {
  font-size: 25px;
  line-height: 15px;
}

#memberPosition {
  font-size: 17px;
  line-height: 15px;
}

#anna {
  background: url("assets/meetTheTeam/AnnaImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#brook {
  background: url("assets/meetTheTeam/BrookImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#faith {
  background: url("assets/meetTheTeam/FaithImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#christy {
  background: url("assets/meetTheTeam/ChristyImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#williamS {
  background: url("assets/meetTheTeam/WilliamSImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#esha {
  background: url("assets/meetTheTeam/EshaImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#ray {
  background: url("assets/meetTheTeam/RayImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#edward {
  background: url("assets/meetTheTeam/EdwardImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#lucas {
  background: url("assets/meetTheTeam/LucasImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#michael {
  background: url("assets/meetTheTeam/MichaelImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#nicholas {
  background: url("assets/meetTheTeam/NicholasImage.JPG");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#ethan {
  background: url("assets/meetTheTeam/EthanImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#maya {
  background: url("assets/meetTheTeam/MayaImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#emily {
  background: url("assets/meetTheTeam/EmilyImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#william {
  background: url("assets/meetTheTeam/WilliamImage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/*Programs styling below:*/
.container {
  position: relative;
  text-align: center;
  color: white;
  display: grid;
  grid-template-columns: 1fr 275px 6fr;
  height: 114vh;
  width: 100%;
  min-width: 750px;
  min-height: 600px;
  background: url("assets/programs/handHoldingBook.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}



.top-left {
  grid-column-start: 2;
  grid-column-end: 3;
  padding-top: 25%;
}

.top-left p {
  font-size: 22px;
  color: black;
  background-color: #c9e0e6;
}

.teacherimg img{
  left: 150px;
  top: 900px;
  size: 30%;
}

.teacherimg h1{
  left: 150px;
  top: 800px;
  color: black;
  font-size: 110%;
}

.teacherimg h2{
  left: 150px;
  top: 1300px;
  font-size: 110%;
  font-style: italic;
  font-family: lucida;
}

.teacherimg p{
  left: 150px;
  top: 1400px;
  right: 800px;
  size: 80%;
  font-family: sans-serif;
}

.grid-container {
  display: flex;
  flex-flow: wrap;
  padding: 0%;
  margin-left: 1%;
  margin-right: 1%;
  justify-content: center;
  align-content: top;
  width: 100%;
  min-width: 750px;
}

.grid-item img {
  max-width: 100%;
  height: auto;
}

.grid-item h1{
  font-weight: 200;
  font-size: 150%;
  color: black;
  line-height: 200%;
}
.grid-item {
  line-height: 200%;
  display: inline-block;
  padding: 40px;
  width: 400px;
  font-size: 30px;
  text-align: left;
  font-size: 80%;
  color: black;
  justify-content: center;
  justify-self: center;
  align-self: top;
  align-content: center;
}
.grid-item h2{
  line-height: 200%;
  font-style: italic;
  font-size: 120%;
  font-weight: 100;
  font-family: cursive; apple-chansery;
}

/*Volunteer styling below:*/
#volunteerTitleContainer {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  height: 75vh;
  min-width: 600px;
  display: grid;
  grid-template-rows: 15% 20% 30% 20% 15%;
  grid-template-columns: 33% 17% 17% 33%;
  margin-bottom: 3%;
}

#volunteerImage {
  grid-area: 1 / 1 / span 5 / span 3;
  background: url("assets/volunteer/books.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#volunteerTitle {
  grid-area: 2 / 3 / span 3 / span 2;
  border: black solid 1px;
  background-color: white;
  display: grid;
  align-content: center;
}

#ourVolunteerProfile {
  text-align: center;
  z-index: 20;
  font-size: 40px;
}

.volunteerTraitContainer {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  border: black solid 1px;
  display: grid;
  min-width: 600px;
  grid-template-columns: 175px 1fr;
  border-radius: 15px;
  align-items: center;
  margin-bottom: 40px;
}

.volunteerTraitTitle {
  text-align: center;
  font-size: 24px;
}

.volunteerTraitText{
  font-size: 16px;
  margin-top: 2%;
  margin-bottom: 2%;
  margin-right: 1%;
  padding-left: 20px;
  border-left: black solid 1px;
}

/*Contact styling below:*/
#contactBackground {
  position: relative;
  display: grid;
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  width: 100%;
  min-width: 750px;
  height: 115vh;
  min-height: 800px;
  grid-template-rows: repeat(100, 1%);
  grid-template-columns: repeat(100, 1%);
  background: url("assets/contact/contactBackground.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

#contactDescription {
  object-fit: scale-down;
  grid-area: 10 / 10 / 90 / 90;
  background-color: white;
  margin: 0%;
  padding: 0%;
}
#contactDescriptionTitle {
  text-align: center;
  padding-left: 10% !important;
  padding-right: 10% !important;
  padding-top: 2.5% !important;
  font-size: 35px !important;
}

#contactDescription p {
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  font-size: 13px;
  line-height: 1.5em;
}

.map {
  position: relative;
  padding-bottom: 34%; // This is the aspect ratio
  height: 0;
  overflow: auto;
}

 .map iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100% !important;
   height: 100% !important;
 }
