header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 600px) {
  header {
    justify-content: space-between;
  }
}
header #logo a img {
  width: 150px;
}
@media screen and (max-width: 600px) {
  header #logo a img {
    width: 100px !important;
  }
}
@media (prefers-color-scheme: dark) {
  header #logo a img {
    filter: invert(100%);
  }
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  max-width: 400px;
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  header nav {
    display: none;
  }
}
header nav a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 1.2em;
}
@media screen and (max-width: 600px) {
  header nav a {
    font-size: 0.6em;
  }
}
@media (prefers-color-scheme: dark) {
  header nav a {
    color: #cccccc;
  }
}

#mobile-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 20;
  transition: height 0.56s cubic-bezier(0.52, 0.16, 0.24, 1);
}
@media (prefers-color-scheme: dark) {
  #mobile-nav-wrapper {
    background-color: #1e1e1e;
  }
}
#mobile-nav-wrapper.closed {
  height: 0;
}
#mobile-nav-wrapper.closed * {
  display: none !important;
}
#mobile-nav-wrapper #mobile-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
#mobile-nav-wrapper #mobile-logo img {
  width: 40px;
  height: 40px;
}
@media (prefers-color-scheme: dark) {
  #mobile-nav-wrapper #mobile-logo {
    filter: invert(89%);
  }
}
#mobile-nav-wrapper nav {
  display: flex;
  flex-direction: column;
}
#mobile-nav-wrapper nav a {
  width: 80%;
  margin: 2px auto;
  padding: 5px;
  border-radius: 10px;
  text-indent: 10px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 1.2em;
  background-color: rgba(0, 0, 0, 0.05);
}
#mobile-nav-wrapper nav a:hover {
  background-color: rgba(0, 0, 0, 0.25);
}
@media (prefers-color-scheme: dark) {
  #mobile-nav-wrapper nav a {
    color: #cccccc;
    background-color: rgba(255, 255, 255, 0.05);
  }
  #mobile-nav-wrapper nav a:hover {
    background-color: rgba(255, 255, 255, 0.25);
  }
}

#open-menu-button,
#close-menu-button {
  background-color: transparent;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  margin-right: 20px;
  display: none;
}
@media screen and (max-width: 600px) {
  #open-menu-button,
#close-menu-button {
    display: block;
  }
}
@media (prefers-color-scheme: dark) {
  #open-menu-button svg,
#close-menu-button svg {
    filter: invert(100%);
  }
}
#open-menu-button:hover,
#close-menu-button:hover {
  cursor: pointer;
}

#close-menu-button {
  position: absolute;
  top: 10px;
  right: 10px;
}/*# sourceMappingURL=page-header.css.map */