@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Math&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body {
  background-color: #000000;
  color: white;
  font-family: "Noto Sans Math", sans-serif;
  position: relative;
  overflow-x: hidden;
}

header {
  display: flex;
  position: fixed;
  width: 98%;
  top: 0;
  left: 0;
  transform: translate(1%, 5%);
  justify-content: flex-end;
  align-items: center;
  padding: 20px;
  font-family: "Zalando Sans Expanded", sans-serif;
  font-size: 18px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(21, 22, 24, 0.3) 0%, rgba(21, 22, 24, 0.5) 100%);
  border-radius: 25px;
}
header p {
  margin-right: auto;
}
header p a {
  color: white;
}
header nav {
  display: flex;
  justify-content: space-around;
  width: 60%;
}
header nav span {
  display: none;
}
header ul {
  display: flex;
  justify-content: space-around;
  width: 95%;
}
header ul li {
  cursor: pointer;
}
header ul li a {
  position: relative;
  color: white;
}
header ul li a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background-color: #ba1f1f;
}
header ul a::after {
  transition: 0.3s;
}
header ul a:hover::after {
  width: 100%;
}
header ul .active::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  left: 0;
  bottom: 0;
  background-color: #ba1f1f;
}
header .fa-x,
header .fa-bars {
  display: none;
}
header button {
  font-family: "Zalando Sans Expanded", sans-serif;
  background-color: #ba1f1f;
  color: white;
  border-radius: 30px;
  padding: 10px 15px;
  border: none;
  cursor: pointer;
}

/*-------MEDIA QUERIES---------*/
@media (max-width: 768px) {
  header nav {
    display: none;
    padding: 30px;
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: left;
    background-color: #fcf7f2;
    border-radius: 10px;
    transition: 0.8s ease-in-out;
  }
  header nav .nav-control-logo {
    display: flex;
    justify-content: space-between;
    color: #ba1f1f;
  }
  header nav .nav-control-logo .fa-x {
    cursor: pointer;
    color: black;
    display: block;
  }
  header nav ul {
    display: block;
  }
  header nav ul .fa-x {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
  }
  header nav ul li {
    margin: 40px 0;
  }
  header nav ul li a {
    color: black;
  }
  header button {
    display: none;
  }
  header .fa-bars {
    display: block;
  }
}/*# sourceMappingURL=nav.css.map */