body {
	margin: 0;
}

/* -------------------------- typography ----------------------- */

h1, h2, h3, h4, h5, h6 {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.1;
}

p, a, li, table, label {
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.6;
}

/* --- */

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: black;
	color: white;
	padding: 1% 4%;
	position: relative;
	z-index: 1;
}

header img.logo {

}

/* --- user bar --- */

header.user-bar {
	background-color: #333;
}

header.user-bar ul {
	margin: 0;
	width: 100%;
	list-style-type: none;
	display: flex;
	justify-content: flex-end;
}

header.user-bar li {
	border-right: 2px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.75);
	padding: 0 1em;
	float: left;
}

header.user-bar li:last-child {
	border-right: none;
}

header.user-bar a {
	color: white;
	text-decoration: none;
}

/* --- end user bar --- */


/* ----- menu ----- */

.navbar {
	padding: 10px 20px;
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-list {
	list-style: none;
	display: flex;
	gap: 20px;
}

.nav-list li a {
	color: white;
	text-decoration: none;
	font-size: 18px;
}

.menu-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 3;
}

.bar {
	height: 3px;
	width: 25px;
	background-color: white;
	margin: 4px 0;
	transition: 0.3s;
}

/* --- end menu --- */