

#toggle {
  display: none;
}

/**
  Hamburger
**/
.hamburger {
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 5;
  cursor: pointer;
}

.hamburger div {
  position: relative;
  width: 70px;
  height: 10px;
  border-radius: 5px;
  background-color: #29c3f7;
  margin-top: 9px;
  transition: all 0.3s ease-in-out;
}

/**
Nav Styles
**/

.nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  top: -100%; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  transform: scale(0);
  z-index: 4;
}

.nav-wrapper {
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  height: 100%;

}

nav {
  text-align: left;
  font-size: 50px;
  margin-top: 120px;
  margin-left: 30%;
}

nav a {
  position: relative;
  text-decoration: none;
  color: #000000;
  display: inline-block;
  margin-top: 1.25em;
  transition: color 0.2s ease-in-out;
  letter-spacing: 1px;
}

nav ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
	

}

nav img {
    max-width: 50px;
    max-height: 50px; 
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 15px;
    float:left;
}

nav ul li {
		margin-top: 1em;

}

/* Links inside the dropdown */
nav ul li a {
	text-decoration: none;
	display: block;
}


/* Change color of dropdown links on hover */
nav li a:hover {
	background-color: #eeeeee;
}

/**
Animations
**/
#toggle:checked + .hamburger .top-bun {
  transform: rotate(-45deg);
  background-color: #ef1616;
  margin-top: 23px;
}
#toggle:checked + .hamburger .bottom-bun {
  opacity: 0;
  transform: rotate(45deg);
}
#toggle:checked + .hamburger .meat {
  transform: rotate(45deg);
  background-color: #ef1616;
  margin-top: -9px;
}

#toggle:checked + .hamburger + .nav {
  top: 0;
  transform: scale(1);
}
