header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  position: sticky !important;
  top: 0;
  z-index: 10 !important;
}

header a {
  color: var(--text);
  text-decoration: none;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  font-family: var(--title);
  text-align: center;
}

.title > *:first-child {
  font-size: var(--large);
}

.title > *:last-child {
  opacity: 0.65;
  font-weight: var(--thin);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 30px;
  margin: 0;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
  transition-property: background;
}

.nav-toggle:after {
  content: "\f0c9";
  position: absolute;
  left: 50%;
  top: 50%;
  color: var(--text);
  font-size: 35px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.nav-toggle:checked:after {
  content: "\f00d";
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--heading);
  text-transform: uppercase;
}

nav > a {
  padding: 5px;
  font-size: 17px;
}

nav > a:hover {
  color: var(--primary);
}

@media (max-width: 700px) {
  header {
    justify-content: flex-end;
  }
  header .nav-toggle {
    display: flex;
  }
  header .nav-toggle:not(:checked) + nav {
    display: none;
  }
  header nav {
    align-items: flex-end;
    flex-direction: column;
    width: 100%;
  }
}

/*# sourceMappingURL=header.css.map */