.header {
	position: fixed;
	z-index: 100;
	top: 0px;
	left: 0px;
	width: 100%;
	background-color: var(--bg);
}
.header .top {
	padding: 10px 20px 10px 20px;
}
.header .top img {
	height: 45px;
}
.header .top .welcome {
	flex: none;
	width: 200px;
	font-size: 16px;
	text-align: right;
}
.header .top .welcome strong {
	display: block;
	font-weight: 500;
	font-size: 12px;
}
.header .top .account {
	position: relative;
	flex: none;
	width: 50px;
	font-size: 12px;
	text-align: center;
}
.header .top .account a {
	color: #fff;
	text-decoration: none;
}
.header .top .account span {
	font-size: 40px;
	font-weight: 300;
	display: block;
}






.header .top .account ul {
	position: absolute;
	top: 40px;
	right: -200px;
	background-color: #000;
	border-radius: 10px;
	padding: 10px;
	list-style: none;
	margin: 0px;
	transition: all 0.2s;
	opacity: 0;
}
.header .top .account:hover ul {
	opacity: 1;
	top: 40px;
	right: 0px;
}
.header .top .account ul li {
	display: block;
	width: 150px;
	margin: 5px 0px;
	text-align: left;
	border-radius: 8px;
	background-color: rgba(41,41,41,1.00);
}
.header .top .account ul li a {
	display: block;
	width: 150px;
	padding: 5px 10px;
}

	
.header .bottom {
	padding: 10px 20px;
	background-color: rgba(42,42,42,1.00);
}
.header .bottom ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.header .bottom > ul > li {
	display: inline-block;
	position: relative;
	border-radius: 8px;
	margin: 0px 10px 0px 0px;
	background: linear-gradient(180deg, var(--primary), var(--primary-700));
	
}
.header .bottom > ul > li > a {
	display: block;
    padding: 8px 13px;
    font-size: 12px;
	text-transform: lowercase;
	color: #fff;
	text-decoration: none;
	font-weight: 500;
}
.header .bottom > ul > li ul {
	display: none;
}
.header .bottom > ul > li:hover ul {
	display: block;
	position: absolute;
	top: 32px;
	left: 0px;
	padding: 10px;
	border-radius: 8px;
	width: 400px;
	background: linear-gradient(180deg, var(--primary), var(--primary-700));
}
.header .bottom > ul > li ul li {
	border-radius: 8px;
	display: inline-block;
	width: 50%;
	vertical-align: middle;
}
.header .bottom > ul > li ul li a {
	display: block;
	padding: 8px 15px;
	color: #fff;
	font-size: 12px;
	text-transform: lowercase;
	font-weight: 500;
	text-decoration: none;
}
.header .bottom > ul > li ul li:hover {
	background: linear-gradient(180deg, var(--primary-dark), var(--primary-dark-700));
}

.content {
	padding: 30px;
	margin: 120px 0px 0px 0px;
}

/*


<div class="header">
	<div class="top flex">
		<div>
			<a href="/"><img src="/images/logo.png" /></a>
		</div>
		<div class="welcome">
			Welcome <?php echo $_SESSION['username']; ?>
		</div>
		<div class="account">
			<a href="/myaccount"><span class="material-symbols-outlined">account_circle</span></a>
		</div>
		
	</div>
	<div class="bottom">
		<?php 
		$nav = new Navigation($db);
		$nav->write();
		?>
	</div>
</div>
<div class="content">