.header {
  width: 100%;
  height: 6vw;
  max-height: 68px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 2;
}

.header.scrolled {
  background-color: var(--background);
}

.background-behind-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6vw;
  z-index: 1;
}

.header__nav {
  box-sizing: border-box;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
}

.header__home_logo {
  display: flex;
  align-items: center;
}

.header__home_logo img {
  height: 6.1vw;
  width: 14.6vw;
  max-height: 50px;
  max-width: 120px;
}

.header__profile_button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.header__profile_button img {
  height: 5vw;
  width: 5vw;
  max-height: 40px;
  max-width: 40px;
}
