nav {
    background: black;
    display: flex;
    justify-content: space-between;
    margin: 0px;
}
nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-item a {
  display: block;
  color: white;
  padding: 30px 16px;
  text-decoration: none;
}
.logo-item {
  display: block;
  color: white;
  padding: 20px 16px;
  text-decoration: none;
}
.logo-item-mobile {
  display: block;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
}

.nav-item a:hover {
  background-color: #E1066D;
  color: black;
 
}
.active a {
  background-color: #E1066D;
  color: black;
}
.logo {
  font-size: 28px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  letter-spacing: 2px;
}