header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px;
	background-color: #333;
	color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
li {
	float: left;
	margin: 0 10px;
}
.desktopmenulinks {
	display: block;
	padding: 10px;
	font-size: 2vw;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.mobilemenulinks {
	display: block;
	padding: 10px;
	font-size: 2vw;
	color: #fff;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.desktopmenulinks:hover {
	color: #000;
	background-color: #fff;
	border-radius: 10px;
	transition: background-color 0.5s ease, color 0.5s ease;
}
.mobilemenulinks:hover {
	color: #000;
	background-color: #fff;
	border-radius: 10px;
	transition: background-color 0.5s ease, color 0.5s ease;
}
.desktop-nav {
	display: flex;
}
.mobile-nav-toggle {
	display: block;
	cursor: pointer;
}
.mobile-nav-toggle img {
	width: 30px;
	height: 30px;
}
.mobile-nav {
	position: fixed;
	top: 55px;
	right: -100%;
	width: 70%;
	height: 100vh;
  background: linear-gradient(to bottom, #000000, #384141);
	z-index: 100;
	transition: all 0.5s ease;
}
.mobile-nav ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.mobile-nav li {
	margin-top: 10px;
}
.mobile-nav a {
	font-size: 6vh;
}
.mobile-nav.active {
	right: 0;
}
@media (orientation: portrait) {
.desktop-nav {
	display: none;
}
.mobile-nav-toggle {
	display: block;
	float: right;
}
.mobile-nav {
	width: 100%;
	top: 0px;
}
.mobile-nav-toggle img {
	display: block;
	width: 100px;
	height: 100px;
	border-radius: 5%;
	box-shadow: 0 0 10px 0 black;
}
}
@media (orientation: landscape) {
.desktop-nav {
	display: flex;
}
.mobile-nav-toggle {
	display: none;
}
.mobile-nav {
	right: -100%;
}
}
.shadow {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
body {
	padding-top: 120px;
}
