* {
	margin: 0;
	padding: 0;
}

button#hamburger-icon {
	position: fixed;
	font-size: 2.5em;
	line-height: 0;
	border: 5px solid #000;
	border-radius: 20%;
	padding: 22px 8px 28px 8px;
	top: 20px;
	left: 20px;
	z-index: 100;
	cursor: pointer;
	background-color: transparent;
}

button#hamburger-icon:hover {
	border-color: #fff;
	color: red;
	background-color: rgba(255,255,255,0.5);
}

nav {
	position: fixed;
	font-size: 12vh;
	padding: 0px 20px 0px 100px;
	box-shadow: 2px 2px 20px 0px black;
	background-color: rgba(128,128,128,0.8);
		transition: transform 1s;
		transform: translateX(-520px);
}

.after-click {
	transform: translateX(100px);
}

nav ul {
	list-style-type: none;
}
nav ul li a {
	text-decoration: none;
	color:black;
}

nav ul li a:hover {
	color:red;
}

@media screen and (min-width: 768px){
    button#hamburger-icon {
        display:none;
    }
    
    nav  {
        display: none;
    }
    
}


