@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");
:root {
  --default-text: "Lexend", sans-serif;
  font-family: var(--default-text);
  font-size: 16px;
}
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background-color: black;
}
* {
  box-sizing: border-box;
}
.hero-banner {
  position: absolute;
  width: 100%;
}
.hero {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  color: white;
  padding: 1rem;
  gap: 2rem;
  border-radius: 1rem;
}
.black-gradient {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(115, 115, 115, 0.4) 3%,
    rgba(0, 0, 0, 0.54) 15%,

    rgba(0, 0, 0, 0.6) 100%
  );
}
.overlay-gradient {
  position: absolute;
  bottom: 0;
  background: linear-gradient(#00000000, #632fa240, #632fa2);
  width: 100%;
  height: 50%;
}
.gradient-text {
  background-image: linear-gradient(
    25deg,
    rgba(223, 41, 230, 1) 0%,
    rgba(131, 120, 255, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  color: transparent !important;
  background-clip: text;
}
.h1 {
  font-size: 5rem;
}
.h2 {
  font-size: 2rem;
}
.bold {
  font-weight: bold;
}
button {
  transition: all 300ms ease-in-out;
}
button:hover {
  cursor: pointer;
}

.primary-button {
  background: none;
  border: 1px solid white;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: white;
}
.introduction {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  width: 100vw;
  background: linear-gradient(#632fa2, #000);
}
.introduction-card {
  position: absolute;
  top: -4rem;
  border-radius: 2rem;
  border: 3px solid rgb(219, 161, 226);
  width: 80%;
  height: 20rem;
  background-color: #00000078;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 50px 15px rgb(196, 111, 239);
}
.primary-button:hover {
  background: linear-gradient(
    25deg,
    rgba(223, 41, 230, 1) 0%,
    rgba(131, 120, 255, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  border-color: transparent;

  padding: 0.5rem 1.5rem;
  color: white;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  position: fixed;
  width: 100%;
  height: 6rem;
  padding: 1rem 2rem;
}
.brand,
.navigation {
  display: flex;
  gap: 1rem;
  border: 2px solid #9d6fd689;
  padding: 1.2rem;
  backdrop-filter: blur(12px);
  background-color: #632fa240;
  border-radius: 2rem;
  filter: drop-shadow(0px 0px 12px #000000a0);
}
.header-link {
  font-size: 1.3rem;
  color: #efefef;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}
.header-link:hover {
  color: #9d6fd6;
}
