

  .navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.2);
}

  .menu-overlay{
    position: fixed;
    left: 0;
    top: 0;
    right: auto;
    bottom: 0;
    z-index: var(--zIndex-overlay);
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
  .menu-content {
    width: 50%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
    display: flex;
    align-items: center;
    transition-delay: 0.1s;
    background-color: var(--colors-background);
  }
  
  .menu-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-left: 10%;
  }

  .menu-list li {
    width: fit-content;
    overflow: hidden;
  }
  
  .menu-link {
    display: inline-block;
    transform: translateY(0);
    font-family: var(--headfont);
    font-variation-settings: "wdth" 140, "wght" 300;
  }
  .menu-link:hover {
    color: white;
    -webkit-text-fill-color: rgba(255, 255, 255, 0);
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #fff;
  }
  
  .nav-item {
    letter-spacing: 0.08em;
    font-size: 3.5rem;
    text-transform: uppercase;
    line-height: normal;
    font-family: var(--headfont);
	  font-variation-settings: "wdth" 140, "wght" 300;
	  margin: 0.8rem 0;
  }
  
  
  @media screen and (max-width: 786px) {
    .menu-content {
      width: 100%;
    }
  }
  

  .line-one, .line-two, .line-three {
    padding: 0;
    margin: 0;
  }

  .menu-btn[id=burger] {
    width: 70px;
    cursor: pointer;
  }
  

  #navbar {
    margin-bottom: 100vh;
  }