body{
	background-color: #2F3137;
}
html{
	scroll-behavior: smooth;
}
.title h1 a{
	color: #FBFBFB;
	 position: fixed;
	 top: 40px;
	 left: 40px;
	 z-index: 6;
	 font-size: 20px;
	 font-weight: 900;
	 text-decoration: none;
	 font-family: sans-serif;
	 text-shadow: 1px 1px #030303;
}
 body h1 > span {
	 text-decoration: none;
	 text-transform: none;
	 opacity: 0.5;
	 font-weight: 300;
	 font-size: 12px;
}
/*Hamburger css start*/
 body input + label {
	 position: fixed;
	 top: 40px;
	 right: 40px;
	 height: 20px;
	 width: 15px;
	 z-index: 5;
}
 body input + label span {
	 position: absolute;
	 width: 100%;
	 height: 2px;
	 top: 50%;
	 margin-top: -1px;
	 left: 0;
	 display: block;
	 background: #FBFBFB;
	 transition: 0.5s;
}
 body input + label span:first-child {
	 top: 3px;
}
 body input + label span:last-child {
	 top: 16px;
}
 body label:hover {
	 cursor: pointer;
	 opacity: 70%;
}
 body input:checked + label span {
	 opacity: 0;
	 top: 50%;
}
 body input:checked + label span:first-child {
	 opacity: 1;
	 transform: rotate(405deg);
}
 body input:checked + label span:last-child {
	 opacity: 1;
	 transform: rotate(-405deg);
}
 body input ~ nav {
	     -webkit-box-shadow: 2px 2px 5px 1px #868686;
    box-shadow: 2px 2px 5px 1px #868686;
	 list-style: none;
	 text-decoration: none;
	 background: #d9a045;
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100px;
	 z-index: 3;
	 transition: 0.5s;
	 transition-delay: 0.5s;
	 overflow: hidden;
}
 body input ~ nav > ul {
	 background-color: none;
	 list-style: none;
	 text-align: left;
	 text-shadow: 1px 1px #a1a1a1;
	 position: absolute;
	 top: 20%;
	 left: 10%; /* Shrank this to widen the menu to make sure all the buttons wound up in a row */
     visibility: hidden; /* Hides orange menu when hamburger menu is closed */
}
 body input ~ nav > ul > li {
	 opacity: 0;
	 transition: 0.5s;
	 transition-delay: 0s;
}
 body input ~ nav > ul > li > a {
	 text-shadow: 1px 1px #a1a1a1;
	 text-decoration: none;
	 text-transform: uppercase;
	 color: #3d3d3d;
	 font-size: 24pt;
	 font-weight: 700;
	 font-family: sans-serif;
	 display: block;
	 padding: 10px;
}
body input ~ nav > ul > li > a:hover{
color: white;
}
 body input:checked ~ nav {
	 text-decoration: none;
	 height: 100%;
	 transition-delay: 0s;
}

body input:checked ~ nav > ul {
		visibility: visible;
		list-style: none;
}

 body input:checked ~ nav > ul > li {
	 opacity: 1;
	 transition-delay: 0.5s;
}
/*hamburger css end*/
.content{
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
    width: 100%;
	padding: 15px;
    text-shadow: 1px 1px #2F3137;
    color: #FBFBFB;
    text-align: center;
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
    text-indent: 5px;
    background-color: #698C35;
    font-size: 12pt;	
}
.content ul{
	list-style: none;

}
.button{
	display: block;
	margin-top: 10px;
	margin-left: auto;
	margin-right: auto;
	width: 10%;
	padding: 10px;
	font-size: 24pt;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	background-color: #445922;
	color: #3d3d3d;
	cursor: pointer;
	transition: all 0.1s;
	border-style: none;
	text-shadow: 1px 1px black;
	
}
.button:hover{
	color: white;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.1s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}
footer{
    background-color: #d9a045;
    display: block;
    margin-top: 20px;
    margin-left: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}
.footertext{
	margin-left: auto;
	margin-right: auto;
	text-decoration: none;

	color: #3d3d3d;
	font-size: 16pt;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-weight: bold;
	text-shadow: 1px 1px #a1a1a1;
}
.footertexta{
	text-decoration: none;
	color: #3d3d3d;
	font-size: 16pt;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, "sans-serif";
	font-weight: bold;
	text-shadow: 1px 1px #a1a1a1;
}
footer a:hover {
	color: white;
}
@media screen and (min-width: 1440px) {
text-shadow: 1px 1px #a1a1a1;
	
}