header {
  display: inline-flex;
  position: sticky;
  top: 0;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  background: linear-gradient(180deg, #0b1220, rgba(5, 8, 20, 0.9) 90%);
  box-shadow: var(--shadow-soft);
  color: var(--text-main);
  font-size: 2vw;
  font-family: "AveriaLibre";
  z-index: 9;
}
header ul {
  padding-left: 4vw;
  display: inline-flex;
  justify-content: space-between;
  list-style-type: none;
}
header div {
  padding-left: 4vw;
}
header img {
  width: 4vw;
  filter: drop-shadow(0px 0px 3px rgb(165, 143, 143));
}
header a {
  text-decoration: none;
  color: var(--text-color);
}
header li {
  padding-left: 2vw;
  padding-right: 2vw;
}

@media (max-width: 968px) {
  header {
    font-size: 2.9vw;
    align-items: center;
    justify-content: center;
  }
  header img {
    width: 5vw;
  }
}
