header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background-color:#1E3B6E;
	z-index:1000;
}
#logo{
	float:left;
	width:50px;
	height:auto;
	fill:#204E8A;
}
#menuElements{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:center;
	height:50px;
	width:calc( 100vw - 60px );
	align-items:center;
	align-content:center;
	gap:25px;
}
.menuElement{
	height:25px;
	width:auto;
	fill:#204E8A;
	cursor:pointer;
}
#sandwich{
	display:none;
	position:fixed; 
	top:4px; right:10px; height:45px; 
	fill:#204E8A; cursor:pointer;
}
@media (max-width: 699px) {
	#sandwich{
		display:block;
	}
	#menuElements{
		display:none;
		z-index:2000;
		position:fixed;
		top:55px; left:0;
		width:100vw; height:auto;
		background-color:#1E3B6E;
	}
	.menuElement{
		height:35px;
		margin:10px;
	}
}