header {
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 3rem;
  width: 31.5rem;
  position: fixed;
  left: 37%;
  top: 3.5rem;
  height: 3.8rem;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  background-color: rgba(0, 0, 0, 0.205);
  /*background-color: rgba(0, 0, 0, 0.105);*/
  backdrop-filter: blur(0.7rem);
  /*box-shadow: 0.1rem 0.1rem 1rem rgba(0, 0, 0, 0.4);*/
  font-family: "Mona Sans", sans-serif;
  font-weight: 600;
}

header a {
  cursor: pointer;
  text-decoration: none;
}

.top-header {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 3rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.logo-box {
  height: 8rem;
}

.logo-box img {
  height: 100%;
  width: 100%;
}

header .nav-button {
  padding: 0.6rem 1.6rem;
  border-radius: 4rem;
  cursor: pointer;
  color: white;
}

header a {
  text-decoration: none;
}

.nav-button:hover {
  border: solid rgba(255, 255, 255, 0.518);
}

.nav-button:active {
  color: white;
}

.nav-button.active {
  /* background-color: #A53860;*/
  background-color: white;
  color: black;
}

#check {
  display: none;
}

.icons {
  position: fixed;
  right: 5%;
  top: 5%;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  display: none;
  border-radius: 4rem;
  padding: .9rem;
  z-index: 1000;
}

.navbar {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #A53860;
  z-index: 10000;
  display: none;
}