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

.header__nav {
  display: flex;
  gap: 20px;
}

.header__nav_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "PF Din Text Comp Pro", sans-serif;
  font-size: 18px; /* Matches --fs-body */
  color: #fff;
  background: #000;
  text-decoration: none;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.header__nav_link:hover {
  background: transparent;
  color: #000;
}

.header__nav_link--active {
  background: transparent;
  color: #000;
}

.header__container .logoText {
  font-family: "PF Din Text Comp Pro";
  font-weight: 400;
  text-align: center;
  font-size: 48px;
  text-decoration: none;
  line-height: 0.9;
  color: #000;
}

.logoLink {
  text-decoration: none;
}
