header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	background-color: #222;
	color: white;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 100000;
	box-sizing: border-box;
	border-right: 10px solid transparent;
}

.logo {
	font-size: 28px;
	font-weight: bold;
}

nav {
	display: flex;
	align-items: center;
	margin-left: auto;
}
nav a {
	margin: 0 20px;
	font-size: 20px;
	text-transform: uppercase;
}

#heroban {
	width: 100%;
	height: 400px;
	background-color: #00000044;
	display: flex;
	justify-content: center;
	align-items: center; 
}