#full-screen-menu-toggle {
	z-index: 20;
	position: absolute;
	/*adding:1em;*/
	/*top:1em;*/
	right: 10px;
	margin-top: 10px !important;
	/*background: lime;*/
}

.full-screen-menu-active #full-screen-menu-toggle {
	/*background:red;*/
}

.site-nav {
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 1);
  z-index: 10;
  font-family: "Open Sans";
  font-size: 2em;
  width: 100%;
}

.full-screen-menu-active .site-nav {
  opacity: 1;
  pointer-events: initial;
}

.site-nav ul {
  display: block;
  transition: all 0.3s ease;
  padding: 0;
  list-style-type: none;
  position: relative;
  top: 35%;
  /*left: 50%;*/
  /*transform: translate(-50%, -50%) scale(1.3)*/
}

.site-nav a {
	color:white;
	text-decoration: none;
	display: block;
	padding:.2em;
	text-align: center;
}

.full-screen-menu-active .site-nav ul {
  /*transform: translate(-50%, -50%) scale(1)*/
}

.img-container {
	display: block;
	width: 80%;
	height: auto;
	position: absolute;
	top: 1em;
	left: 1em;
	display: flex;
	justify-content: center;
	align-items: center;		
}

li {
	line-height: 38px;
}

#imgmenu {
	display: block;
	width: 150%;
	height: auto;
	left: -25% !important;
	position: relative;
}