*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: 'Roboto Mono', monospace;
	list-style: none;
	text-decoration: none;
}


body{
	background-color: black;
	
}

nav{
	display: flex;
	justify-content: space-around;
	align-items: center;
	min-height: 8vh;
	background-color: #191718;
	z-index: 1000;
	
}

.wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	width: 1400px;
	margin: 0 auto;	

}

.logo{
	color: #E0E5E9;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 20px;
}

.nav-links{
	display: flex;
	justify-content: space-around;
	width: 30%;
	z-index: 1000;
}

.nav-links a{
	color: #E0E5E9;
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: bold;
	z-index: 1000;
}

.nav-links li{
	list-style: none;
}

.stack{
	display: none;
	cursor: pointer;

}
.stack div{
	width: 25px;
	height: 2px;
	background-color:#E0E5E9;
	margin: 5px;
	transition: all 0.3 ease;
}



@media screen and (max-width: 1024px){
	.nav-links{
	width: 45%;
}
.wrapper {
	margin: 0 auto;	
	width: 90vw;


}
}


@media screen and (max-width: 768px){
	body{
		overflow-x: hidden;
	}
	.nav-links{
		position: absolute;
		right: 0px;
		height: 92vh;
		top: 8vh;
		background-color: #191718;
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 35%;
		transform: translateX(100%);
		transition: transform 0.5s ease-in;
	
	}
	
	.stack{
		display: block;
	}

	.wrapper {
	margin: 0px;
	width: 100vw;

}
}

.nav-active{
	transform: translateX(0%);
	z-index: 600;
}

.toggle .line1{
	transform: rotate(-45deg) translate(-5px,5px);

}

.toggle .line2{
	opacity: 0;
}

.toggle .line3{
	transform: rotate(45deg) translate(-5px,-5px);
}

/* Jesse Dropdown vvvvvvv */

/* Dropdown Button */
.dropbtn {
	background-color: #3d3d3d;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;

	text-decoration: none;
	letter-spacing: 1px;
	font-weight: bold;
	z-index: 1000;

	width: 200px;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
	position: relative;
	display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover { background-color: #ddd; }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content { display: block; }

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn { background-color: #007dfc; } 
