:root {
  --black: #000000;
  --white: #ffffff;
  --purple-light: #c081f8;
  --gray: #ffffffe5;
  --purple: #9333ea;
  --gray-lighter: #ffffffad;

  --gradient-span: linear-gradient(to right, #c081f8 0%, #da2a7b 100%);
  --gradient-hero: linear-gradient(
    hsla(274, 70%, 4%, 1) 0%,
    hsla(273, 66%, 31%, 1) 100%
  );

  --gradient-features-background: linear-gradient(
    360deg,
    hsla(274, 66%, 17%, 1) 50%,
    hsla(276, 67%, 6%, 1) 100%
  );
  --gradient-feature: linear-gradient(
    180deg,
    hsla(274, 66%, 17%, 1) 0%,
    hsla(273, 66%, 31%, 1) 100%
  );
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.2;
}

a {
  text-decoration: none;
}

.header {
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(0, 0, 0);
  /* Change the background color alpha to 0.5 once you scroll it out */
  padding: 0 10px;
  backdrop-filter: blur(10px);
  /* position: sticky; */
  top: 0;
}

.logo {
  width: 173.2px;
  max-height: 57.6px;
}

.sandwichBar {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
}

.bar {
  height: 4px;
  width: 100%;
  background-color: var(--white);
  border-radius: 2px;
}

.mobile-list-container {
  display: none;
  list-style: none;
  padding: 10px 20px;
  background-color: var(--black);
  position: absolute;
  top: 81px;
  right: 0;
  border-radius: 8px;
  width: 100vw;
  z-index: 2;
}

.desktop-list-container {
  display: none;
}

.list-active {
  display: block;
}

.list {
  line-height: 1.5;
  font-size: 1.3rem;
  padding-left: 10px;
}

.list a,
.list a:active,
.list a:visited {
  display: block;
  color: var(--white);
  text-decoration: none;
  width: 100vw;
}

.list a:focus,
.list a:hover {
  background-color: var(--purple);
  width: 100%;
}

.hero-section {
  background: var(--gradient-hero);
  padding: 10px;
  text-align: center;
  height: max-content;
}

.heading-span {
  background: var(--gradient-span);
  background-clip: text;
  color: transparent;
}
.hero-heading {
  margin: 30px 0;
  font-size: 3.5rem;
}

.heading {
  color: var(--white);
}

.hero-paragraph-container {
  margin-bottom: 30px;
}

.hero-paragraph {
  color: var(--gray);
  font-size: 1.6rem;
}

.second-hero-paragraph {
  margin: 0 1.7rem;
}

.get-started-container {
  margin: 20px auto;
  background-color: var(--purple);
  border-radius: 10px;
  max-width: 200px;
  padding: 10px;
  text-align: center;
  box-shadow: 1px 1px 2px var(--purple);
}

.get-started a,
.get-started a:link,
.get-started a:active {
  color: var(--white);
  font-size: 1.4rem;
}

.get-started a:focus,
.get-started a:hover {
  font-size: 1.5rem;
}

.get-started-span {
  margin-left: 5px;
}

.token-info-container {
  margin: 10px auto;
  border: 2px solid var(--purple-light);
  padding: 10px 5px;
  border-radius: 8px;
  width: max-content;
  position: relative;
}

.token-info a {
  color: var(--white);
  font-size: 13px;
}

.token-info i {
  display: inline-block;
  margin-left: 5px;
  font-size: 15px;
}

.feature-container,
.feature,
.value-container {
  background: hsla(276, 67%, 6%, 0.5);
  margin-bottom: 20px;
  border-radius: 10px;
  font-size: 1.3rem;
  padding: 15px;
}

.icon-container svg {
  color: var(--purple);
  height: 60px;
  width: 48px;
}

.hero-features-heading,
.feature-heading,
.value-heading {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 2px;
}

.hero-features-paragraph,
.feature-paragraph,
.value-paragraph {
  color: var(--gray-lighter);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.feature-container:hover .icon-container svg,
.feature:hover .icon-container svg,
.value-container:hover .icon-container svg {
  width: 52px;
  height: 65px;
}

.feature-container:hover .hero-features-heading,
.feature:hover .feature-heading,
.value-container:hover .value-heading {
  font-size: 1.3rem;
}

.feature-container:hover .hero-features-paragraph,
.feature:hover .feature-paragraph,
.value-container:hover .value-paragraph {
  font-size: 1.3rem;
}

.features-section,
.values-section {
  background: var(--gradient-features-background);
  text-align: center;
  padding: 10px;
  height: max-content;
}

.features-heading-container {
  margin: 10px;
}

.features-heading,
.roadmap-heading,
.values-heading {
  font-size: 3rem;
  margin-bottom: 2px;
}

.features-paragraph,
.roadmap-paragraph {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.roadmap-section {
  height: max-content;
  animation: chanBGC 2s ease-in-out infinite alternate backwards;
  padding: 15px;
  text-align: center;
}

@keyframes chanBGC {
  0% {
    background: linear-gradient(
      90deg,
      hsla(274, 66%, 17%, 1) 0%,
      hsla(341, 66%, 31%, 1) 100%
    );
  }

  100% {
    background: linear-gradient(
      90deg,
      hsla(341, 66%, 31%, 1) 0%,
      hsla(274, 66%, 17%, 1) 100%
    );
  }
}

.roadmap-container img {
  width: 90vw;
  /* max-height: 70vh; */
}

.footer-section {
  background: var(--black);
  padding: 20px;
  color: var(--gray-lighter);
  text-align: justify;
  font-size: 1.1rem;
}

.flexed-footer-section {
  display: flex;
  gap: 10vw;
  margin-bottom: 20px;
}

.product-heading,
.social-heading {
  font-size: 2rem;
}

.product-section {
  margin: 12px;
  color: var(--white);
}

.product a,
.product a:link,
.product a:visited,
.product.a:active {
  color: var(--gray-lighter);
  font-size: 1.3rem;
}

.product a:hover,
.product a:focus {
  font-size: 1.4rem;
}

.social-links-container {
  display: flex;
  justify-content: space-evenly;
}

.link-container a i,
.link-container a:visited i,
.link-container a:active i {
  color: var(--purple);
  width: 24px;
}

.link-container a:hover i {
  width: 36px;
  color: var(--gray-lighter);
}

@media (min-width: 765px) {
  .desktop-list-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    list-style: none;
    margin-right: 30px;
    position: relative;
  }
  .menuBar,
  .mobile-list-container {
    display: none;
  }

  .main-list a {
    width: fit-content;
    color: var(--gray-lighter);
    padding: 25px;
    font-size: 1.4rem;
  }

  .main-list a:hover,
  .main-list a:active,
  .main-list a:focus {
    color: var(--white);
    font-size: 1.5rem;
  }

  .dropdown-content {
    display: none;
    background: var(--gradient-features-background);
    width: 37vw;
  }

  .desktop-list-container:hover .dropdown-content {
    display: block;
    position: absolute;
    top: 50px;
    padding: 10px;
  }

  .dropdwn-list a:link,
  .dropdwn-list a:visited {
    color: var(--gray-lighter);
    font-size: 1.3rem;
    padding: 20px;
    display: block;
  }

  .dropdwn-list a:hover,
  .dropdwn-list a:focus,
  .dropdwn-list a:active {
    font-size: 1.35rem;
    background-color: #9333ea;
    overflow: auto;
  }

  .get-started-container {
    width: 220px;
  }

  .get-started a,
  .get-started a:link,
  .get-started a:active {
    font-size: 1.2rem;
  }

  .get-started a:focus,
  .get-started a:hover {
    font-size: 1.3rem;
  }

  .token-info-container {
    padding: 20px;
  }

  .token-info a {
    font-size: 22px;
  }

  .token-info i {
    display: inline-block;
    margin-left: 5px;
    font-size: 25px;
  }

  .hero-features-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .feature-container {
    max-width: 32vw;
    margin-left: 10px;
  }

  .features-heading,
  .roadmap-heading,
  .values-heading {
    font-size: 3rem;
  }

  .hero-features-paragraph,
  .feature-paragraph,
  .value-paragraph {
    font-size: 1.5rem;
  }

  .features-paragraph,
  .roadmap-paragraph {
    font-weight: 500;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .hero-heading {
    font-size: 4.1rem;
  }

  .hero-paragraph {
    font-size: 1.8rem;
  }
  .feature-container,
  .feature,
  .value-container {
    font-size: 1.7rem;
  }

  .hero-features-heading,
  .feature-heading,
  .value-heading {
    font-size: 1.7rem;
  }

  .hero-features-paragraph,
  .feature-paragraph,
  .value-paragraph {
    font-size: 1.5rem;
  }

  .feature-container:hover .icon-container svg,
  .feature:hover .icon-container svg,
  .value-container:hover .icon-container svg {
    width: 58px;
    height: 70px;
  }

  .feature-container:hover .hero-features-heading,
  .feature:hover .feature-heading,
  .value-container:hover .value-heading {
    font-size: 1.7rem;
  }

  .feature-container:hover .hero-features-paragraph,
  .feature:hover .feature-paragraph,
  .value-container:hover .value-paragraph {
    font-size: 1.6rem;
  }

  .footer-section {
    font-size: 1.3rem;
  }

  .product a,
  .product a:link,
  .product a:visited,
  .product.a:active {
    color: var(--gray-lighter);
    font-size: 1.3rem;
  }

  .product a:hover,
  .product a:focus {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1200px) {
  .features-container,
  .values-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    max-width: 100vw;
  }

  .feature {
    width: 32vw;
  }

  .value-container {
    width: 24vw;
  }
}
