.navbar {
  display: flex;
  /* position: fixed; */
  z-index: 10;
  background: transparent;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  flex-direction: row;
  justify-content: space-between;
  width: 82%;
  align-items: center;
  /* transition: background 0.2s; */
  height: 6.5rem;
  /* top: 0; */
}

.navbar-icon {
  width: 20px;
  height: 20px;
}

.link {
  margin: 1rem;
  color: var(--brand-grey);
  text-decoration: none;
}

.link:hover {
  color: var(--brand-white);
}

#desktop-logo {
  height: 60px;
}

#mobile-nav {
  background: #000;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

#mobile-nav.show {
  display: block;
}

.mobile-menu-button {
  display: none;
  z-index: 10;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-button.hide-mobile-button {
  display: none;
}

#mobile-logo {
  display: none;
  width: 140px;
}

#mobile-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
}

#mobile-links {
  padding-top: 120px;
  padding-left: 30px;
}

#mobile-links a {
  display: block;
  margin-bottom: 2rem;
}

@media screen and (max-width: 800px) {
  .mobile-menu-button {
    display: block;
  }

  .nav-links,
  #launch-button {
    display: none;
  }

  #mobile-hamburger {
    display: block;
  }

  #desktop-logo {
    display: none;
  }

  #mobile-logo {
    display: block;
  }

  .navbar {
    background: transparent !important;
    position: absolute;
  }
}
