
  /* 
  sets body style of the home page - green background color and font. 
  */
body {
  margin: 0;
  padding: 0;
  background-color: #8CC43F;
  font-family:"Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
}

/* styles both images in the home page - locks it in position and is responsive  */

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 2%;
}

.mainpic{
    display: block;
    margin-left: auto;
    margin-right: auto; 
    overflow: auto;
}

/* styles the h1 tag - ensured it is positioned in the mid-center right of the image */
h1 {
    color: white;
    text-align: center;
    padding: 5%;
    margin-top: 5%;
}

.nav ul {
  list-style: none;
  background-color: white;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  line-height: 40px;
  height: 40px;
  border-bottom: 1px solid #888;
}
 
.nav a {
  text-decoration: none;
  color: black;
  display: block;
  transition: .3s background-color;
  font-weight: bold;
}
 
.nav a:hover {
  background-color: #80ff00;
}
/* makes home button static and sets background color to red and font to white */
.nav a.active {
  background-color: red;
  color: white;
  cursor: default;
}
 /* ensures navigation menu tabs are center aligned - width is 120px because there are 5 tabs, 5 * 120 = 600px */
@media screen and (min-width: 600px) {
  .nav li {
    width: 120px;
    border-bottom: none;
    height: 50px;
    line-height: 50px;
    font-size: 1.4em;
  }
 
  /* Display Inline */
  .nav li {
    display: inline-block;
    margin-right: -4px;
    margin-left: -4px;
  }

footer {
    font-size: 18px;
}
