.site-header-nav {
  align-content: center;
  display: flex;
  justify-content: space-between;
}

.site-header-logo {
  max-width: 13em;
  height: auto;
  @media screen and (max-width: 510px) {
    max-width: 9em;
  }
}

.site-header-logo-image {
  width: 100%;
}

.site-header-nav-links-container {
  align-items: center;
  display: flex;
  flex-basis: 50%;
  gap: 1.25em;
  justify-content: flex-end;
  @media screen and (max-width: 510px) {
    gap: 0.75em;
  }
}

.site-header-nav-link {
    color: black;
    text-decoration: none;
}

.line {
  background-color: black;
  height: 1px;
  opacity: 0%;
  transition: opacity 0.2s;
}

.site-header-nav-link:hover + .line,
.active + .line {
  opacity: 100%;
}