@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700');
@import url('https://fonts.googleapis.com/css?family=Domine');



body {
    margin: 0px auto;
    overflow-x: hidden;
}

#logobar {
  height: 80px;
  width: 100%;
  background-color: #F9F7E3;
  position: fixed;
  z-index: 2000;


}

#logobar img {
  width: 250px;
  display: block;
  left: 0;
  right: 0;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}


.nav{
  background-color: #56773F;
    overflow: hidden;
    width: 100%;
  
  
-webkit-box-shadow: inset 0px 18px 7px -14px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0px 18px 7px -14px rgba(0,0,0,0.3);
box-shadow: inset 0px 18px 7px -14px rgba(0,0,0,0.3);

-webkit-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.3);
-moz-box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.3);
box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.3);

position: fixed;
margin-top: 80px;
z-index: 100;
    list-style:none;
    padding:0;
    text-align:center;
}
.nav li{
    display:inline;

}
.nav a{
  font-family: 'Source Sans Pro', sans-serif;
    font-size: 16pt;
    color: #f2f2f2;
    text-decoration: none;
    display: block;
    text-align: center;
    display:inline-block;
    padding: 15px 15px;
    transition: background-color 0.2s;
}

.nav a:hover {
    background-color: #374C27;
    color: white;
}

.nav .current {
    background-color: #374C27;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

 /* When the screen is less than 600 pixels wide, hide all links. Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 800px) {
  .topnav a {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }

  #logobar img {
  width: 200px;
  margin-top: 25px; 
}
.content h2 {
    font-size: 16pt;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 800px) {
  .topnav.responsive {
    position: fixed;
    z-index: 100;
  }
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
