a {
  text-decoration: none;
}

p {
  font-family: 'Droid Sans', Georgia, Times, serif;
  font-size: 30px;
}

h1 {
  font-family: 'Droid Serif', Helvetica, Arial, sans-serif;
}

h2 {
  font-family: 'Droid Serif', Helvetica, Arial, sans-serif;
}

h3 {
  font-family: 'Droid Serif', Helvetica, Arial, sans-serif;
}

img {
  left: 15px;
  padding: 10px;
  margin-left: 6px;
  margin-right: 10px;
  line-height: 1px;
  border-right: 1px solid #0f0f0f;
  display: block;
  width: auto;
  height: 220px;
  max-height: 100%;
  max-width: 100%;
  float: left;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #DCEDC8;
}

iframe {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
  align-content: center;
  display: block;
}

.header {
  padding: 10px;
  padding-top: 70px;
  text-align: center;
  background: url(img/cloudy-day.jpg);
  color: #0C5E1F;
  border-radius: 20px;
  border: 1px solid black;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.header span {
  color:black;
}

.header h1 {
  color: black;
  font-size: 100px;
  padding-bottom: 0px;
  margin-bottom: 10px;
}

.addressBar {
  background-color: #B2CC92;
  line-height: 1px;
  outline: 4px solid #F1F4E5;
  border-bottom: 1px solid #153C16;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
}

.addressBar p {
  padding: 5px 30px;
  font-size: 55px;
  text-decoration: none;
  text-align: center;
}

.addressBar span {
  padding: 0px 30px;
  font-size: 60px;
  text-decoration: none;
  text-align: center;
}

.addressBar span:hover {
  color:#818181;
  cursor: pointer;
}

.section {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  background: url(img/dot-grid.jpg);
  padding: 5px 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  align-content: center;
  border-radius: 10px;
}

#txtmid {
  text-align:center;
}

.section p {
  text-indent: 15px;
}

.section h1 {
  font-size: 35px;
  padding: 2px 0px;
}

.section h2 {
  font-size: 40px;
  padding: 2px 0px;
}

.section h3 {
  font-size: 28px;
  padding: 2px 0px;
  text-align: center;
}

.sectionheader {
  background: #74AD68;
  outline: 4px solid #F1F4E5;
  border: 1px solid #153C16;
  padding: 5px 20px;
  text-align: center;
  margin-inline-start: 100px;
  margin: auto;
  max-width: 1650px;
  border-radius: 5px;
  height: auto;
}

.sectionheader h1 {
  font-size: 50px;
  word-wrap: break-word;
}

.sidenav {
  height: 40%;
  width: 0;
  position: fixed;
  z-index:1;
  top: 0;
  left: -6px;
  background-color: #74AD68;
  overflow-x: hidden;
  transition: 0.5s;
  margin-top: 110px;
  padding-top: 10px;
  outline: 4px solid #F1F4E5;
  border: 1px solid #153C16;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 32px;
  color: black;
  display: block;
  transition: 0.3s;
}

.sidneav a:link {text-decoration: none; color: black;}

.sidenav a:hover {color: #153C16; background-color: #DCEDC8;}

#active {
  background-color: #DCEDC8;
  text-decoration: underline;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
  grid-gap: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1800px;
}

.grid-item {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  min-width: 0;
  min-height: 0;
}

.grid-item span:hover {
  cursor: zoom-in;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.overlay {
  width: "0px";
  height: "0px";
  position: fixed;
  top: -20px;
  left: -20px;
  transform: translate(-50%, -50%);
  margin:0;
  padding: 5px;
  background: url(img/dot-grid.jpg);
  border-radius: 10px;
  z-index: 999;
  transition: 0.3s;
  outline: 4px solid #F1F4E5;
  border: 1px solid #153C16;
}

.overlay img {
  max-height: 95%;
}

.foot {
  margin: 55px;
}

@media only screen and (max-width: 620px) {
  p {
    font-size: 15px;
  }
  .header h1 {
    font-size: 25px;
    word-wrap: break-word;
  }
  .addressBar {
    height:55px;
  }
  .addressBar p {
    font-size: 20px;
  }
  .addressBar span { 
    font-size: 24px;
  }
  .addressBar a {
    font-size: 20px;
  }
  .section h1 {
    font-size: 23px;
  }
  .section h2 {
    font-size: 26px;
  }
  .section h3 {
    font-size: 20px;
  }
  .grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-template-rows: repeat(1, minmax(0, 1fr));
    grid-gap: 10px;
  }
  .sectionheader h1 {
    font-size: 25px;
  }
  .sidenav {
    height: 40%;
    transition: 0.5s;
    margin-top: 60px;
    padding-top: 5px;
  }
  .sidenav a {
    padding: 2px 2px 2px 16px;
    font-size: 16px;
  }
}
