#menu-bar {
	display: none;
}

header label {
	float: right;
	font-size: 18px;
	margin: 6px 0;
	cursor: pointer;
}

.menu {
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #fd8204;
	transition: all 0.5s;
	transform: translatex(-100%);
}

.menu a {
	display: block;
	color: #FFF;
	font-size:16px;
	height: 50px;
	text-decoration: none;
	padding: 15px;
	border: 1px solid rgba(255,255,255,0.5);
	
}

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

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

@media (min-width:1024px) {
.menu {
		position:static;
		width:auto;
		height:auto;
		transform: translatex(0%);
		float: right;
		display: flex;
	}
	
.menu a {
		border:none;
	}
	header label {
		display:none;
	}
	
}
