.header {
  margin: 20px 0;
  top: 0;
  z-index: 9999999999;
}

.header-left,
.header-right {
  width: 100%;
}

.header-right {
  text-align: right;
}

.header-center {
  white-space: nowrap;
}

.header-link {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 9999px;
  transition: all 0.14s ease-in-out;
}

.header-link:hover {
  text-decoration: none;
  color: #000;
  background: var(--pink);
}

.header-link.active {
  color: #000;
  background: #fff;
}

.header-button {
  font-size: 14px;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 9999px;
  transition: all 0.14s ease-in-out;
  color: #000;
  background: #fff;
}

.header-button.active,
.header-button:hover {
  color: #000;
  background: var(--pink);
  text-decoration: none;
}

.header-button.signup {
  color: #fff;
  background: var(--red);
}
.header-button.signup:hover {
  /* color: #000; */
  background: var(--pink);
  /* filter: contrast(1.5); */
}
.header-button.signup.active {
  color: #000;
  background: #fff;
}

.hidden {
  display: none;
}

.show .hidden {
  display: block;
}

/* .header-button + .header-button {
  margin-left: 8px;
} */

.menu {
  width: 100vw;
  height: 100%;
  position: fixed;
  z-index: 9999999;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  background: #fff;
}

.menu .slide-button {
  width: auto;
  margin-bottom: 8px;
  color: #000;
  background: transparent;
  cursor: pointer;
}

.menu .slide-button:hover {
  color: #fff;
}

.menu .slide-button.active:nth-child(1),
.menu .slide-button:hover:nth-child(1),
.menu .slide-button:active:nth-child(1) {
  color: #fff;
  background: var(--purple);
}

.menu .slide-button.active:nth-child(2),
.menu .slide-button:hover:nth-child(2),
.menu .slide-button:active:nth-child(2) {
  color: #fff;
  background: var(--red);
}

.menu .slide-button.active:nth-child(3),
.menu .slide-button:hover:nth-child(3),
.menu .slide-button:active:nth-child(3) {
  background: var(--yellow);
}

.menu .slide-button.active:nth-child(4),
.menu .slide-button:hover:nth-child(4),
.menu .slide-button:active:nth-child(4) {
  background: var(--green);
}

.menu .slide-button.active:nth-child(5),
.menu .slide-button:hover:nth-child(5),
.menu .slide-button:active:nth-child(5) {
  background: var(--pink);
}

.menu {
  display: none;
}

.menu-button {
  display: none;
  width: 24px;
  height: 24px;
}

@media (max-width: 900px) {
  /* .header-center, */
  .header-right {
    display: none;
  }

  .header-center {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .menu.show {
    display: flex;
  }
}
