/* NAVBAR */
nav {
    width: 100%;
    padding: 5px 0;
    position: fixed;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    background-color: rgba(0, 0, 0, 0);
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1999;
    border-bottom: 1px solid var(--panel2);
  }
  
  nav .link-logo {
    transition: 0.8s;
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  nav .link-logo > img:hover {
    filter: drop-shadow(1px 1px 5px var(--greenFull2));
  }
  
  nav .link-logo > h1 {
    font-family: var(--four);
    color: var(--greenFull3);
    font-size: 28px;
    font-weight: bolder;
    filter: drop-shadow(2px 4px 6px black);
  }
  
  .nav-links {
    display: flex;
    margin-right: 25px;
    gap: 15px;
    padding-bottom: 4px;
  }
  
  .nav-links > a {
    text-decoration: none;
    color: white;
    font-family: var(--main);
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 25px;
    position: relative;
  }
  
  .nav-links > a:hover,
  .nav-links > span:hover {
    color: var(--greenFull2);
  }
  
  .nav-links > a,
  .nav-links > span {
    color: white;
    font-family: var(--main);
    font-weight: bold;
    font-size: 0.8rem;
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .nav-links > span:nth-child(1) {
    border: 1px solid var(--panel2);
  }
  
  /* MENU MOBILE */
  #nav-mobile {
    flex-direction: column;
    position: fixed;
    transition: 1s all;
    top: 61px;
    right: 0;
    z-index: 2002;
    background-color: var(--blackPanel);
  }
  
  .open-nav-mobile {
    display: flex;
    height: 100vh;
    width: 100vw;
    padding: 2rem;
    background-color: var(--blackPanel);
  }
  
  .close-nav-mobile {
    height: 1px;
    width: 1px;
    overflow: hidden;
  }
  
  #btn-menu-mobile {
    display: none;
    padding: 1rem;
    transition: 0.4s all;
  }
  
  #btn-menu-mobile:hover {
    color: var(--greenFull2);
    transform: scale(1.1);
  }
  
  #nav-mobile > div {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
  }
  
  #nav-mobile > div > div {
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 1rem;
    width: 230px;
    gap: 20px;
    font-family: var(--third);
  }
  
  #nav-mobile > div > div:hover {
    color: var(--greenFull3);
  }
  
  @media (max-width: 668px) {
    #btn-menu-mobile {
      display: flex;
      color: var(--greenFull3);
    }
  
    .nav-links {
      display: none;
    }
  }


  