 
.navBar {
	overflow: hidden;
	background-color: #333;
	top: 0; 
	width: 100%;
	z-index: 100;
}

.navBar a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	font-weight:bold;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	z-index: 100;
}

.navBar a:hover {
	background-color: #ddd;
	color: black;
}

.active {
	background-color: #4CAF50;
	color: white;
}

.navBar .icon {
	display: none;
} 

@media screen and (max-width: 600px) {
	.navBar a:not(:first-child) {display: none;}
	.navBar a.icon {
		float: right;
		display: block;
	}
}

@media screen and (max-width: 600px) {
	.navBar.responsive {position: relative;}
	.navBar.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.navBar.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
}
