div#navigation {
	display: flex;
	justify-content: center;
}

div#navigation-bar {
	width: 100vw;
	height: 5vh;
	text-align: center;
}

button.tab-button {
	float: left;
	width: 100%;
	height: 5vh;
	border: none;
	outline: none;
	background-color: rgb(63, 63, 63);
	color: white;
	font-family: 'Segoe UI', sans-serif;
	font-weight: 100;
	font-size: 1.75vh;
	text-align: center;
	transition: 0.2s;
}

button.tab-button:hover{
	background-color: rgb(95, 95, 95);
    cursor: pointer;
}

button.active {
	background-color: rgb(191, 191, 191);
	color: black;
}