#toggle {
  display: none;
}

/**
  Hamburger
**/
.hamburger {
  position: absolute;
  top: 5em;
  right: 5%;
  margin-left: -0em;
  margin-top: -25px;
  width: 2em;
  height: 25px;
  z-index: 5;
}

.hamburger div {
  position: relative;
  width: 3em;
  height: 5px;
  border-radius: 3px;
  background-color: #006633;
  margin-top: 8px;
  transition: all 0.3s ease-in-out;
}

/**
Nav Styles
**/
.nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #556458;
  top: -100%; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
}
.nav-wrapper {
  position: relative;
  overflow: scroll;
  overflow-y: auto;
  height: 100%;
}
nav {
  text-align: left;
  margin-left: 25%;
}
nav a {
  position: relative;
  text-decoration: none;
  color: #6ecddd;
  font-size: 2em;
  display: inline-block;
  margin-top: 1.25em;
  transition: color 0.2s ease-in-out;
  letter-spacing: 1px;
}
nav a:before {
  content: '';
  height: 0;
  position: absolute;
  width: 0.25em;
  background-color: white;
  left: -0.5em;
  transition: all 0.2s ease-in-out;
}
nav a:hover {
  color: white;
}
nav a:hover:before {
  height: 100%;
}

/**
Animations
**/
#toggle:checked + .hamburger .top-bun {
  transform: rotate(-45deg);
  margin-top: 25px;
}
#toggle:checked + .hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}
#toggle:checked + .hamburger .meat {
  transform: rotate(45deg);
  margin-top: -7px;
}

#toggle:checked + .hamburger + .nav {
  top: 0;
  transform: scale(1);
}

body {
	background-color: #7f8e73;
	text-align: center;
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
h1 {
	color: #E6E6E6;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 36px;
	font-variant: normal;
}
h2 {
	color: #E6E6E6;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
}
h3 {
	color: #E6E6E6;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	font-weight: bolder;
}
h4 {
	color: #F7F7F7;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-variant: small-caps;
}
h5 {
	color: #F7F7F7;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-variant: small-caps;
}
h6 {
	color: #E6E6E6;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
p {
	color: #E6E6E6;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
image {
	max-width: 100%;
	max-height: 100%;
	bottom: 0;
	margin: auto;
	overflow: auto;
	position: absolute;
	top: 0px;
    -o-object-fit: contain;
	object-fit: contain;
	color: #CCCCCC;
}
div {
	width: 100%;
	border: 1px solid pink;
	left: inherit;
}

img {
	max-width: 100%;
	object-fit: contain;
	position: relative;
}
/* unvisited link */
a:link {
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

/* visited link */
a:visited {
	color: #FFFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}

/* mouse over link */
a:hover {
	color: #336633;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 16px;
}

/* selected link */
a:active {
	color: #CCFFFF;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
