.navbar {
	width: 100%;
	font-size:1.3rem;
	background-color: #000000;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	max-height:60px;
	margin: 0 auto;
	z-index: 3;
}

.navbar a {
	background-color: inherit;
	color: #fff;
	text-decoration: none;
}

.navbar-links ul {
  display: flex;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  
}

.navbar-links li {
	list-style-type: none;
	text-decoration: none; 
}

.navbar-links li a {
display: block;
padding: 1rem 2.5rem;
} 

.navbar-links li:hover {
  background-color: #555;
  color: #ccc;
   text-decoration: none; 
}

.toggle-button {
	position: absolute;
	top: 1rem;
	right: 2.5rem;
	display: none;
	font-size:1.3rem;
}

.toggle-container {
	display:none;
}

@media all and (max-width: 480px) {
	
	.navbar {
		flex-direction: column;
		align-items: flex-start;
		max-height: none;
	}
	
	.toggle-button { 
		display: flex;
	}
	
	.toggle-menu{
		display: block;
		color: #cccccc;
		float: right;
		padding: 1rem 2.5rem;
		font-size:1.3rem;
	}
	.toggle-container {
		display:block;
	}
	
	.navbar-links { 
		padding-top: 2px;
		display: none;
		width: 100%
	}
	.navbar-links ul {
		width: 100%;
		flex-direction: column;
	}
	.navbar-links li {
		text-align: center;
	}
	
}