body {
  position: absolute;
  left: 0;
  top: 0;
	display: flex;
	flex-flow: column wrap;
  width: 100%;
  margin: 0;
  padding: 0;
	background-color: rgb(20,20,20);
	color: rgb(235,235,235);
  font-family: 'Nunito';
}

* {
  margin: 0;
  padding: 0;
}

/*--------NAV---------*/

nav {
	position: fixed;
	width: 100%;
	height: 60px;
	z-index: 3;
	background-color: rgba(20,20,20, 0.8);
}

nav > div {
	display: flex;
	align-items: center;
  justify-content: space-between;
	margin: 0 auto;
	width: 80%;
	height: 100%;
}

.menuItems {
	display: flex;
	flex-flow: row wrap;
	height: 100%;
	font-family: 'Montserrat';
	font-size: 16px;
	font-weight: 500;
}

.menuItems > a {
	padding: 0 5px 0 30px;
	color: white;
	line-height: 60px;
	text-decoration: none;
	box-shadow: inset 0 0 0 0 rgba(220, 220, 220, .3);
	box-sizing: border-box;
	transition: box-shadow .2s;
}

.aSign {
	padding: 0 30px 0 5px !important;
}

.active {
	color: rgb(156, 204, 100) !important;
}

.menuItems > a:hover  {
	box-shadow: inset -150px 0 0 0 rgba(255, 255, 255, .2);
}

.aSign:hover {
	box-shadow: inset 50px 0 0 0 rgba(255, 255, 255, .2) !important;
}

nav > div > a {
	margin: 0 15px;
	font-family: 'Nunito';
  font-size: 26px;
	font-weight: 400;
	color: rgb(250,250,250);
	text-decoration: none;
}

strong {
	font-family: 'Montserrat';
	font-size: 18px;
	font-weight: 300;
}

@media screen and (max-width: 600px) {
  #logo {
    display: none;
  }
  nav > div {
    margin: 0;
    width: 100%;
  }
}
