 /* Navbar container */
.navbar {
  overflow: hidden;
  background-color: rgba(5,5,5,0.4);
  font-family: 'Teko', sans-serif;
  font-size: 25px;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  cursor: pointer;

}

/* Links inside the navbar */
.navbar a {
  float: left;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  font-size: inherit;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a blue background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #146FF8;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: fixed;
  background-color: rgba(5,5,5,0.9);
  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 {
  float: none;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a blue background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #146FF8;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content, .dropdown:active .dropdown-content{
  display: block;
} 



.closer {
	display:none;
}

.opener{
	display:none;
	width: 100%; 
	background-color: rgba(5,5,5,0.4); 
	color:white; 
	font-family: 'Teko', sans-serif; 
	font-size: 25px; 
	cursor: pointer;
}

.menu-icon {
  width: 20px;
  height: 3px;
  background-color: white;
  color:white;
  margin: 3px 0;
}

@media screen and (max-width: 400px) {
	
	.navbar{
		width: 0;
		height: 100%;
		left:0;
		background-color: rgba(5,5,5,0.8);
		text-align: center;
		vertical-align: center;
		margin: 5px;
		transition: 0.5s;
		overflow-y: auto;
	}
	.topper{
		top:30%;
		-ms-transform: translateY(30%);
		transform: translateY(30%);
	}
	
	.navbar a {
		float: none;
	}
	
	.dropdown{
		float: none;
		text-align: center;
	}
	
	.dropdown-content a{
		text-align: center;
		position: relative;
	}
	
	.closer{
		display:block;
	}
	
	.opener{
	display:block;
	position:fixed;
	
	}
	
	
		
}