#navbar {
  width: 100%;
  height: 26.5px;
  padding: 20px 0px;
  position: sticky;
  top: 0;
  z-index: 1000;
  font-weight: 400;
  font-style: normal;
  border-bottom: 1px solid rgba(0, 0, 0, 0.103);
  background-color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}

#navbar.scrolled {
  top: -80px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
}

#navbar a {
  text-decoration: none;
  color: var(--black-grey);
}

#navbar a:hover {
  text-decoration: underline;
  color: var(--purple-blue);
}

#navbar h1 {
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 1.5px;
}

.nav-right, .nav-left {
  gap: 40px;
}

.nav-header {
  margin: 0;
}

.nav-btn {
  display: inline;
  margin-top: 2px;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.contact {
  display: none;
}

/* Vertical layouts */
@media (width <= 950px) {
  #navbar {
    height: fit-content;
    position: relative;
  }
  #navbar h1 {
    font-size: 1.25rem;
  }
  .nav-wrapper {
    flex-direction: column;
    gap: 12px;
  }
  .nav-left, .nav-right {
    justify-content: start !important;
  }
  .nav-right {
    gap: 5%;
  }
  .nav-btn {
    font-size: 1.1rem;
    text-decoration: underline !important;
  }
  .contact {
    display: inline;
  }
}