body {
  background-color: white;
  /* background-color: black; */
  margin: 0;
  padding: 0;

}


.Navbar {
  background-color: #006f00;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px;
  overflow: hidden;
}

.dropbtn {
  color: white;
  background-color: #006f00;
  font-size: 75%;
  border: none;
  font-family: 'Merienda', 'cursive';
}

.content {
  display: none;
  position: absolute;
  background-color: #006f00;
  min-width: inherit;
}

.content #drp {
  color: white;
  font-family: 'Merienda', 'cursive';
  display: block;
  margin: 10px;
}

#drp {
  font-size: 75%;
}

#drp:hover, #navitem:hover {
  font-size: 80%;

}


.dropdown:hover .content {display: block;}

.dropdown:hover .dropbtn {background-color: #006f00;}

a {
  color: white;
  font-family: 'Merienda', cursive;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

#navitem {
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 75%;
  font-family: 'Merienda', cursive;


}

header {
  display: flex;
  justify-content: center;
  color: black;
  /* color: #1E8B44; */
  margin: 5px;
  font-size: 130%;
  font-family: 'Merienda', 'cursive';
  margin-top: 10px;
  padding: 25px;
}



.gridcontainer {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-gap: 20px;

  padding:10px;
}

h4 {
  /* color: #1E8B44; */
  font-family: 'Julius Sans One', sans-serif;
  font-size: 120%;
  line-height: 120%;
}

article {
  color: #006f00;
  font-size: 120%;
  font-family: 'Julius Sans One', sans-serif;
  word-spacing: 120%;
  font-weight: 500;
  text-decoration: underline;

}

ul {
  list-style: none;
}

@media only screen and (min-width: 560px) {
  .gridcontainer {
    grid-template-columns: 1fr 1fr;
  }
  header {
    font-size: 150%;}
  }





/* screens at a minimum width of 850px and larger will display 2 columns */
@media only screen and (min-width: 850px) {
  .gridcontainer {
    /* the grid-temp-col provides number of columns */
    grid-template-columns: 1fr 1fr;
  }


  #navitem, #drp, .dropbtn{
    font-size: 110%;
  }

  #navitem:hover, #drp:hover {
    font-size: 115%;
  }



}
