/* Navigation Bar Container */
.nav-bar {
	position: absolute;
	top: 50px;
	right: 65px;
	left: 65px;
	padding: 30px 50px 30px 50px;
	height: 30px;
	display: flex;
	align-items: center;
	z-index: 100;
	justify-content: space-between;
	white-space: nowrap;
}
@media (max-width: 1000px) {
	.nav-bar {
		display: flex;
		flex-direction: column;
	}
	.nav-links {
		margin-top: 20px;
	}
}

/* Title */
.nav-title {
	font-size: 50px; 
  font-weight: 500;
	flex: 2;
	margin-right: 15px;
	font-family: 'Bangers', cursive;
	color: white;
}

/* Links */
.nav-link {
	margin-left: 18px;
	color: white;
	text-decoration: none;
	transition: 0.15s;
	font-size: larger;
}
.nav-link:hover {
	opacity: 0.8;
}
.nav-link:active {
	opacity: 0.6;
}
