nav {
  background-color: var(--gr);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  height: 11vh;

  .box {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

    img {
      width: 60%;
      object-fit: contain;
      object-position: center;
      height: 11vh;

      /* background-color: var(--y); */
    }

    #nav-btn {
      width: 40px;
      height: 40px;
      
      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
      
    }

    #links {
      height: 0vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 0;
      justify-content: center;
      align-items: center;
      position: absolute;
      right: 0;
      top: 11vh;
      z-index: 999;
      background-color: var(--gr);
      width: 60%;
      transition: all 0.2s ease-out;
      
      a {
        padding: 0.5rem;
        color: var(--l);
        text-align: center;
      }
    }
  }
}

@media (min-width: 768px) {
  nav {


    .box {

      #nav-btn {
        display: none;
      }

      #links {
        height: fit-content;
        flex-direction: row;
        position: static;
      }
    }
  }
}