.menu-wrap{

  position:fixed;
  bottom: 0;
  left: 0;
  z-index: 1;

}

.menu-wrap .toggler{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  cursor: url('https://julianmartin.us/images/g-dot.svg') 10 10, auto;
  width: 50px;
  height: 50px;
  opacity: 0;
}

.menu-wrap .hamburger {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  padding: 1rem;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;

}

.startpic > img {
  width: 50px;
  height: 50px;

}

/* hamburger line */
.menu-wrap .hamburger > div {

  position: relative;
  width: 100%;
  height: 2px;
  background-color: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;

}

/* Top and Bottom lines */

/* Moves lines down*/


/* Toggle animate*/
.menu-wrap .toggler:checked + .hamburger > div {
  transform: rotate(360deg);
}

 .toggler:checked + .hamburger {
  transition: all 0.6s ease;
  background: #e74c3c;


}

/*Turn lines into X */


/* rotate on hover */

.menu-wrap .toggler:checked:hover + .hamburger > div {
  transform: rotate(360deg);
}



/* Show menu */
.menu-wrap .toggler:checked ~ .menu {
  visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: var(--menu-speed);

}

.menu-wrap .toggler:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0,4s ease;
}

.menu-wrap .menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap .menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 200vw;
  height: 200vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: all 0.4s ease;
}

.menu-wrap .menu > div > div {
text-align: center;
max-width: 90vw;
max-height: 100vh;
transition: opacity 0.4s ease;


}

.menu-wrap .menu > div > div > ul > li {
  list-style: none;
  color: white;
  font-size: 1.5rem;
  padding: 1rem;

}


.menu-wrap .menu > div > div > ul > li > a  {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;

}
