.header {
  width: 100%;
  background-color: var(--background-dark-filter);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  transition: all 0.5s;
  z-index: 10;
}
.header.scrolled {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 1;
  transition: all 1.5s;
}

.header-container {
  max-width: 1920px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1040px) {
  .header-container {
    justify-content: space-between;
  }
}

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