.navbar {
	overflow: hidden;
	background-color: #333;
	/* Set the navbar to fixed position */
	position: fixed;
	/* Position the navbar at the top of the page */
	top: 0;
	left: 0;
	/* Full width */
	width: 100%;
}

.navbar a {
	float: left;
	display: block;
	color: #f2f2f2;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
}

.navbar a:hover {
	background: #ddd;
	color: black;
}