#nav-container {
    margin-left: auto;
    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: 0.5s ease-in-out;
  }
  
  #nav-toggle span:nth-child(1) {
    top: 4px;
    transform-origin: left center;
  }
  
  #nav-toggle span:nth-child(2) {
    top: 14px;
    transform-origin: left center;
  }
  
  #nav-toggle span:nth-child(3) {
    top: 24px;
    transform-origin: left center;
  }
  
  #nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 3px;
    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;
    left: 4px;
  }
  
  #nav-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    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%;
    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;
  }
  #nav-fullscreen a {
    color: white;
    text-decoration: none;
  }

  body.open {
    overflow: hidden;
}

  @media screen and (min-width: 768px){
    ul#menu-menu-principal li {
        font-size: 55px!important;
    }
  }

  
  ul#menu-menu-principal li {
    font-size: 35px;
    font-family: 'gilroy';
    font-weight: 100;
    text-transform: uppercase;
}

ul#menu-menu-principal {
    padding: 0;
}
  
 #nav-fullscreen.open {
    visibility: visible;
    opacity: 1;
    transition: ease-in-out 0.5s;
    transition-delay: 0.25s;
    background: linear-gradient(325deg, #e1c7ba 0%, #ff49ab 90%);
}
  
  
  #nav-overlay {
    background: linear-gradient(122deg, #e1c7ba 5%, #ff49ab 30%, #e1c7ba 60%);
}
  
  #nav-toggle span {
    background-color: #e1c7ba;
  }
  
  #nav-fullscreen {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: sans-serif;
    font-size: 10vh;
  }
  #nav-fullscreen li:hover {
    list-style: disc;
  }



  /* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #e1c7ba #ffffff;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: #ffffff;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #e1c7ba;
    border-radius: 10px;
    border: 4px solid #ffffff;
  }