
#toggle {
	display: none;
}

.hamburger {
	background-color: var(--maracibo-bg);
	border-radius: 3px;
	position: fixed;
	top: 4rem;
	right: 5%;
	margin-left: -2em;
	margin-top: -45px;
	width: 28px;
	height: 24px;
	z-index: 5;
}

.hamburger div {
	position: relative;
	width: 24px;
	height: 3px;
	/*border-radius: 1px;*/
	background-color: var(--maracibo-brown);
	/*var(--maracibo-yellow);*/
	margin-left: 2px;
	margin-top: 4px;
	transition: all 0.3s ease-in-out;
}
.nav {
	position: fixed;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	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: hidden;
	overflow-y: auto;
	height: 100%;
}
nav {
	text-align: left;
	margin-left: 25%;
}
nav h1 {
	color: var(--maracibo-yellow);
}
nav a {
	position: relative;
	text-decoration: none;
	color: var(--maracibo-yellow);
	font-size: 1.5em;
	display: inline-block;
	margin-top: 0.5em;
	transition: color 0.2s ease-in-out;
	letter-spacing: 1px;
}

nav img {
	disply: block;
	height: 1.7rem;
}

nav a:hover {
	background-color: white;
}

/**
Animations
**/
#toggle:checked + .hamburger {
	background-color: var(--maracibo-bg);
	border-radius: 3px;
}
#toggle:checked + .hamburger .top-bun {
	transform: rotate(-45deg);
	margin-top: 10px;
}
#toggle:checked + .hamburger .bottom-bun {
	opacity: 0;
	transform: rotate(45deg);
}
#toggle:checked + .hamburger .meat {
	transform: rotate(45deg);
	margin-top: -3px;
}

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