/* BEGIN NAV */
#nav-container {
  margin-left: 10px;
  position: relative;
}

#nav-toggle {
  display: block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transform: rotate(0deg);
}

#nav-toggle span {
  background-color: black;
  width: 100%;
  height: 4px;
  border-radius: 1px;
  display: block;
  position: absolute;
  left: 0;
  content: '';
  transition: .5s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 4px;
  transform-origin: left center;
}

#nav-toggle span:nth-child(2) {
  top: 14px; /* 10px + 4px */
  transform-origin: left center;
}

#nav-toggle span:nth-child(3) {
  top: 24px; /* 20px + 4px */
  transform-origin: left center;
}

#nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px; /* -(32px/32=1px) + 4px */
  left: 4px;
}

#nav-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 25px; /* 20px + 1px + 4px */
  left: 4px;
}

#nav-overlay {
  position: absolute;
  top: 16px;   /* 32px / 2 */
  left: 16px;  /* 32px / 2 */
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  transition: 1s;
  transform: scale3d(0, 0, 0);
}

#nav-overlay.open {
  transform: scale3d(1, 1, 1);
}

#nav-fullscreen {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transition: ease-in-out 0.25s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

#nav-fullscreen ul {
  list-style: none;
  line-height: 60px;
}

#nav-fullscreen a {
  color: white;
  text-decoration: none;
}

#nav-fullscreen.open {
  visibility: visible;
  opacity: 1;
  transition: ease-in-out 0.5s;
  transition-delay: 0.25s;
}

/* END NAV */
/* BEGIN OTHER */

*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

/*body {*/
/*  display: flex;*/
/*  background-color: black;*/
/*  padding: 16px;*/
/*  overflow: hidden;*/
/*  color: white;*/
/*}*/

#nav-overlay {
  background: linear-gradient(180deg, #cb6913 10%, #522a13 50%, #f9c587 90%);
}

#nav-toggle span {
  background-color: white;
}

#nav-fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: sans-serif;
  font-size: 2.5em;
}

#nav-fullscreen li:hover {
  list-style: disc;
}

/* END OTHER */

@media only screen and (max-width: 480px) {
  #nav-fullscreen {
    font-size: 1.5em;
  }
}

/*@media only screen and (max-width: 400px) {*/
/*  .open ul {*/
/*    font-size: 22px;*/
/*    margin-left: 30px;*/
/*  }*/
/*}*/