header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--blue);
  display: flex;
  justify-content: center;
  padding: 5px 10px;
  height: 70px;
}

.header-container {
  max-width: var(--box-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  display: block;
}
.header-logo a {
  display: block;
}
.header-logo img {
  max-height: 60px;
  height: 100%;
  display: block;
}

.header-nav ul {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 30px;
  list-style: none;
}
.header-nav li {
  width: max-content;
}
.header-nav li a {
  color: var(--white);
  font-family: "BRLNSR";
  font-size: 1.2rem;
  text-decoration: none;
}/*# sourceMappingURL=header.css.map */