<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#navbar-container{
	background-color: #222222;
	height: 150px;
	width: 100%;
	position: sticky;
	top: 0;
	z-index: 100;
}

.nav-content-container {
	display: flex;
	width: 1920px;
	height: 100%;
	margin: auto;
	justify-content: space-between;
}

.home-logo {
	flex-basis: 10%;
	display: flex;
	justify-content: left;
	align-items: center;
	height: 100%;
}

.home-logo a {
	display: block;
	color: white;
	text-align: center;
	padding: 16px;
	text-decoration: none;
	font-size: 40pt;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.home-logo a:hover {
	background-color: #111111;
}

.nav-container {
	flex-basis: 90%;
	list-style-type: none;
	display: flex;
	justify-content: right;
	align-items: center;
	height: 100%;
	margin: 0px;
	padding: 0px;
}

.nav-items {
	float: right;
}

.nav-items a {
	display: block;
	color: white;
	text-align: center;
	text-decoration: none;
	padding-left: 15px;
	padding-right: 15px;
	vertical-align: middle;
	font-size: 30pt;
	font-family: "Barlow Condensed", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.nav-items a:hover {
	background-color: #111111;
}

.hamburger-icon {
    display: none;
}

.hamburger-icon-individual {
    color: white;
    font-size: 32;
}

#myLinks {
	display: none;
}

@media only screen and (max-width: 1920px) {
  .nav-content-container {
    width: 100%;
  }
}

@media only screen and (max-width: 700px) {
  .nav-container {
    display: none;
  }

	.nav-content-container {
		justify-content: center;
	}

	.hamburger-icon {
	    display: flex;
			justify-content: center;
	    align-items: center;
	    margin-right: 20px;
	}

	#myLinks {
		display: flex;
		width: 100%;
		align-items: center;
		justify-content: center;
		background-color: #222;
	}

	#myLinks a {
		text-decoration: none;
		color: white;
		font-size: 12px;
		font-family: "Barlow Condensed", sans-serif;
		font-weight: 300;
		font-style: normal;
		text-align: center;
		margin: 10px;
		padding: 0;
	}
}
</pre></body></html>