body{
    font-family: Georgia, serif;
}
h1{
    font-size: 45px;
    line-height: 2;
}
p{
    font-size: 19px;
}
.information{
    color: #006600;
    letter-spacing: 1.5px;
    line-height: 1.5;
}
legend{
    padding: 14px;
}

#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;
}

.facebook{
    position: fixed;
    top: 180px;
    right: 220px;
    width: 45px;    
}
.facebook:hover {
  opacity: 0.5;
}
.twitter{
    position: fixed;
    top: 179px;
    right: 150px;
    width: 51px;
}
.twitter:hover {
  opacity: 0.5;
}

#maincontent{
    padding: 20px;
    margin-left: 120px;
    margin-right: 120px;
    
}
#content2{
    border-radius: 12px;
    background-color: #e8e3df;
}
#content3{
    margin-top: 100px;
    border-radius: 12px;
    background-color: #e8e3df;
    padding: 20px;
}

.section_border{
    font-size: 18px;
    border: hidden;
}
span{
    font-family: 'Courier New', monospace;
    font-size: 13px;
    letter-spacing: 0.1px;
}
input[type=text]{    
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
}
textarea{
  width: 100%;
  height: 200px;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  resize: none;
}
input[type=submit], input[type=reset] {
  background-color: #236952;
  border: none;
  text-align: center;
  display: inline-block;
  font-size: 13px;
  color: white;
  padding: 16px 32px;
  border-radius: 4px;
  margin: 4px 2px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #59ac80;
}
input[type=reset]:hover {
  background-color: #59ac80;
}


@media screen and (max-width: 1280px){
	#wrapper{
		width:100%;
	}
    .facebook, .twitter{
        display: none;
    }
}
@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, p{
		word-wrap:break-word;
	}
    #maincontent{
        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;
    }
    
}