.header {
	overflow: hidden;
	background-color: black;
	padding: 10px 10px;
}

.header a {
	float: left;
	color: black;
	text-align: center;
	padding: 12px;
	text-decoration: none;
	font-size: 18px;
	border-radius: 4px;
	color: white;
}

.header a.logo {
	font-size: 25px;
	font-weight: bold;
}

.header a.active {
	background-color: dodgerblue;
	color: white;
}

.header-right {
	float: right;
}

@media screen and (max-width: 500px) {
	.header a {
		float: none;
		display: block;
		text-align: left;
	}

	.header-right {
		float: none;
	}
}

.track:hover {
	color: dodgerblue;
}
