header {
  background: var(--mainColor);
  display: block;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.headerContent {
  min-height: 75px;
  max-width: var(--maxWidth);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headerContent .logoSection .logo {
  font-family: "Oswald";
  font-size: 1.5rem;
  font-weight: 400;
  color: #cdd0e9;
  cursor: pointer;
  text-decoration: none;
}

header .headerContent nav {
  display: inline-flex;
  align-items: center;
  list-style: none;
  gap: 3.5rem;
}

header .headerContent nav a.navLink {
  color: #d8d8d8;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

header .headerContent nav a.navLink:hover {
  color: #fff;
}

header .headerContent nav a.navLink.active {
  color: #fff;
  font-weight: 500;
}

header .headerContent nav a.navLink.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--accentColor), var(--btnColor));
  border-radius: 2px;
}

header .headerContent nav a.navLink.logBtn {
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--secColor);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  border: none;
  width: fit-content;
  height: fit-content;
  transition: all 0.3s ease-in-out;
}

header .headerContent nav a.navLink.logBtn:hover {
  opacity: 0.66;
}
