.topnav {
	background-color: #11164A;
	height: 80px;
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	z-index: 100;
	transition: top 0.3s;
}

.nav-link {
	float: left;
	display: block;
	width: auto;
	margin-top: 20px;
}

.nav-link a {
	color: #F8F9FA;
	font-family: Montserrat, sans-serif;
	text-decoration: none;
	font-size: 16px;
	text-align: center;
}

.nav-link:hover {
	background-color: #111;
}

.nav-link:active {
	background-color: #111;
}

@media (max-width:1200px) {
	.topnav {
		display: table;
		height: 120px;
		justify-content: center;
		transition: top 0.3s;
	}
	.nav-link {
		float: left;
		display: block;
		width: auto;
		margin-top: 30px;
		margin-left: 20px;
	}
}

@media (max-width:1000px) {
	.topnav {
		display: table;
		transition: top 0.3s;
	}
	.nav-link {
		float: left;
		display: block;
		width: auto;
		margin-top: 30px;
	}
}