.nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  background: none;
  height: 50px;
  border-bottom: 1px solid #252b2e;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.nav .nav-btn {
  display: flex;
  align-items: center;
  height: 50px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-size: 18px;
  font-family: "Inter";
  transition: 0.15s;
  text-decoration: none;
}

.nav .nav-btn:hover {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 00;
  font-size: 19px;
}

.nav .nav-btn i {
  margin-right: 10px;
  font-size: 18px;
}
