@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  --nav-height: 120px;
}

.nav {
  padding-top: 30px;
  padding-bottom: 30px;
  position: fixed;
  z-index: 10000;
  width: 100%;
  margin: auto;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav--hidden {
  transform: translateY(calc(-1 * var(--nav-height)));
  box-shadow: none;
}

.nav__link {
  color: #ffffff;
  letter-spacing: 1px;
  text-decoration: none;
  margin: 0 1em;
  font-size: 1.15em;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "Gothic A1";
}
.nav-logo {
  margin-left: 30px;
}

.nav-right {
  margin-right: 30px;
}

.button-started {
  background-color: #5b53ff;
  width: 150px;
  border-radius: 20px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
}

.nav-center {
  display: flex;
}

.story-dropdown-title {
  display: flex;
  align-items: center;
  font-weight: bold;
}

.story-dropdown-title span {
  margin-right: 10px;
}

.nav-icons {
  display: none;
}
.nav-right {
  display: flex;
  align-items: center;
}
.story-title {
  font-family: "Gothic A1";
}

@media screen and (max-width: 1000px) {
  .nav-center {
    display: none;
  }
  .button-started {
    display: none;
  }
  .nav-icons {
    display: block;
    margin-left: 20px;
    margin-top: 5px;
  }
}

@media screen and (max-width: 700px) {
  /* .nav {
    backdrop-filter: none;
    background-color: black;
  } */
  .button-started {
    display: none;
  }
}

.nav-responsive {
  display: none;
  position: fixed;
  background-color: black;

  width: 100%;
  height: 100vh;
  z-index: 1000;
  transition: transform 0.3s;
}

.nav-container {
  padding-top: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-container a {
  margin-bottom: 40px;
  font-size: 2em;
  color: white;
  text-decoration: none;
}

.nav-container a:hover {
  color: #2d2d37;
}

.close {
  display: none;
}
