header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 0.75rem 1rem;
  margin-bottom: 3rem;
  width: 100%;
  height: 100%;
  font-family: "Nunito", sans-serif;
}

header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .logo .vertical-separator {
  width: 0.125rem;
  align-self: stretch;
  background-color: var(--white);
  border-radius: 0.125rem;
  margin: 0px 10px;
}

header .logo .content {
  width: 3rem;
  font-size: 0.625rem;
}

header .logo img {
  width: 15rem;
}

header .menu {
  margin-right: 1rem;
}

header .menu .menu-link {
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
}

header .menu .menu-link:hover {
  color: var(--orange-300);
  position: relative;
}

header .menu .menu-link::after {
  content: "";
  position: absolute;

  width: 0;
  left: 50%;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 20px;

  background-color: var(--orange-300);
  transition: width 0.3s ease, left 0.3s ease;
}

header .menu .menu-link:hover::after {
  width: 100%;
  left: 0;
}

header .menu .menu-link + .menu-link {
  margin-left: 1.5rem;
}

@media (max-width: 768px) {
  html {
    font-size: 87.5%; /* 14px */
  }
}

@media (max-width: 600px) {
  header .menu {
    display: none;
  }

  header .logo img {
    width: 70%;
    min-width: 250px;
  }
}
