.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0vw 3vw;

  font-size: 1.5vw;
  text-transform: capitalize;
  font-weight: 500;
}
.nav img {
  width: 5vw;
}
.middle {
  display: flex;
  align-items: center;

  gap: 4vw;
}
.middle a {
  color: black;

  text-decoration: none;
}
.middle :hover {
  cursor: pointer;
}
.nav-right {
  display: flex;
  gap: 3vw;
  font-size: 1.8vw;
}
