nav {
  display: block;
  width: 100%;
  background: var(--white);
  box-shadow: 0px 10px 50px #e4e4ec;
}

nav .nav-inner {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Stuff */
nav .nav-inner a.logo {
  display: block;
  width: auto;
  height: 50px;
  text-decoration: none;
  cursor: pointer;
}

nav .nav-inner a.logo object {
  display: block;
  height: 100%;
  width: auto;
  pointer-events: none;
}

/* Link Stuff */
nav .nav-inner ul.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

@media screen and (max-width: 650px) {
  nav .nav-inner {
    height: 80px;
  }

  nav .nav-inner a.logo {
    height: 35px;
  }

  nav .nav-inner ul.nav-links li:first-child {
    display: none;
  }
}
