#menu-bar {
	display: none;
}

header label {
	float: right;
	font-size: 35px;
	margin: 6px 0;
	cursor: pointer;
	
}
.menu {
	position: absolute;
	top: 55px;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(51,51,51,0.9);
	transition: all 0.5s;
	transform: translateX(-100%);
	}

.footer {
    position: fixed; 
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
}

.menu a {
	display: block;
	color: #fff;
	height: 26px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-decoration: none;
	padding: 20px;
	border-bottom: 1px solid rgba(255,255,255,0.3);
}

.menu a:hover {
	background: rgba(255,255,255,0.3)
}

#menu-bar:checked ~ .menu {
	transform: translateX(0%);
}