body{
    background-color: #e8e3df;
}
h1,p{
    font-family: Georgia, serif; 
}
h1{
    font-size: 45px;
    line-height: 2;
}
h{
    font-family: Copperplate, Papyrus, fantasy;
    font-size: 20px;
    line-height: 1;
}
p{
    line-height: 2;
    font-size: 20px;
    word-spacing: 2px;
}

#header{
    display: inline-block;
    background-color: white;
	width:101%;
    height: auto;
    margin: -6px;
    border-style: hidden;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.logo{
    width: 250px; 
    height: auto;
    padding: 30px;
    margin: 0 100px;
}

#navigation{
    font-family: Arial, Helvetica, sans-serif;
    float: right;
	clear:both;
	padding: 30px;
	margin-right: 110px;
	list-style-type:none;
    background-color: white;
}
.primarynav{
    position: relative;
	display:inline-block;
	padding:2px 10px;
	text-align:center;
}
.primarynav a{
	text-decoration:none;
	color:black;
	font-weight:bold;
	font-size:100%;
	padding:12px;
}
.primarynav a:hover{
    color: #59ac80;
}
.current{
    border-bottom:solid 3px #59ac80;
}

.dropdown:hover .menu {
  display: block;
}
.menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #59ac80;
  padding: 0;
  margin: 0;
  list-style: none;
}
.menu li {
  display: block;
}
.menu li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
}
.menu li:hover a {
  background-color: dimgray;
  color: white;
}

#content{
    padding: 20px;
    margin-left: 120px;
    margin-right: 120px;
}
.nocolor{
    color: black;
}
.withcolor{
    border-radius: 12px;
    background-color: #6a8d69;
    color: white;
    padding: 20px;
}

a[href="#top"]{
    width: 50px;
    height: 50px;
    bottom: 5px;
    right: 25px;
    float: right;
    position: fixed;
    background-image: url(images/button.PNG);
    background-size: 50px;
}
a[href="#top"]:hover {
    background-color: black
}
a[href="#top"]:active {
  background-color: black;
  box-shadow: 0 5px;
  transform: translateY(5px);
}

#skip-links {
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
#skip-links a {
    color: white;
}

@media screen and (max-width: 960px){
	#wrapper{
		width:100%;
	}
}
@media screen and (max-width: 785px){
	#wrapper{
		width:100%;
	}
    #header{
        display: inline-flex;
        flex-direction: column;
        width: 102%;
    }
    #navigation{
        display: flex;
        flex-direction: row;
        margin-top: -40px;
        font-size: 16px;
    }
    .primarynav{
        white-space: nowrap;
    }
}
@media screen and (max-width: 640px){
	#wrapper{
		width:100%;
	}
	h1, h4, p{
		word-wrap:break-word;
	}
    #content{
        margin: 0;
        padding: 10px;
    }
    #header{
        display: inline-flex;
        flex-direction: column;
        width: 102%;
    }
    #navigation{
        display: flex;
        flex-direction: row;
        margin-top: -40px;
        margin-left: -25px;
        font-size: 13px;
    }
    .primarynav{
        white-space: nowrap;
    }
    
}