body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: hsl( 260 33% 7%); 
  color: white;
  position: relative;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color:  hsl( 260 33% 7%);
  border-bottom: 1px solid #222;
    position: sticky;
    top: 0;
}

.logo {
  font-weight: bold;
  font-size: 24px;
}

.logo span {
  font-weight: normal;
  font-size: 16px;
  color: #aaa;
}
header span {
    display: none;
}
nav a {
  color: white;
  margin-left: 20px;
  font-size: 14px;
  text-decoration: none;
}
.hero .headinf {
   width: 100%;
   max-width: 746px;
}

.hero-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero {
    display: flex;
    max-width: 1440px;
   
    background-position: center;
    background-size: cover;
    justify-content: center;
    margin: 0 auto;
    padding-left: 5%;
    padding-right: 0;
    padding-top: 6%;
    padding-bottom: 5%;
}
@media (min-width: 1024px) { 
    .hero {
 background-image: url("./home_banner.webp");
    }
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 18px;
    line-height: 1.75rem;
}
.hero button {
    padding: 12px 16px;
    height: 40px;
    width: 256px;
    background-image: linear-gradient(270deg,#e41968 -11.18%,#4915ba 111.17%);
    border: none;
    cursor: pointer;
    color: #fff;
    border-radius: 6px;
}
.hero img {
    min-width: 20rem;
    width: 100%;
    max-width: 367px;

    height: 367px;
}
.intro {
  max-width: 1440px;
  margin: 0 auto;
  padding-right: 5%;
  padding-left: 5%;
  display: flex;
  justify-content: center;
  gap: 10%;
  padding-top: 3rem;

}


.intro h3 {
  font-size: 14px;
}

.intro p {
  max-width: 500px;
  margin-top: 10px;
  font-size: 20px;
}
.into1 {
    width: 336px;
}


.stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 30px;
}

.stat {
  background: #1d1538;
  padding:10px 40px ;
  border-radius: 12px;
  /* max-width: 200px;
  min-width: 50px;
  width: 100%; */
  height: 80px;
  text-align: start;
  background-image: url('./button.png');
 background-position: center;
  background-image: linear-gradient(to left, rgba(66, 0, 206, 0.1), rgba(253, 0, 105, 0.1));
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  
}

.stat span {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.ecosystem {
  text-align: center;
  padding: 50px;

  
  max-width: 700px;
  margin: auto;
  position: relative;
}
.ecosystem p {
    position: absolute;
    top: 35%;
    left: 20%;
    font-weight: 700;
    font-size: 1.875rem;
  line-height: 2.25rem;
  max-width: 30rem;
  text-align: center;
}

.chains {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 30px;
  gap: 30px;
}

.chain {
  background-color: rgb(21 17 29/1);
  padding: 25px;
  border-radius: 12px;
  width: 460px;
  color: white;
  text-align: left;
}

.chain img {
 
  margin-bottom: 15px;
}

.chain h2 {
  margin: 0 0 10px;
}

.tags {
  margin-top: 10px;
  font-size: 14px;
  text-align: end;
  text-decoration: underline;
}
.chain p {
    font-size: 14px;
}


footer {
  text-align: center;
  padding: 30px;
  border-top: 1px solid #222;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
 
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 10px;
  color: #777;
  text-decoration: none;
}


@media (max-width: 1024px) { 
    .hero h1 {
     font-size: 1.875rem;
    }
    .intro {
        flex-direction: column;
    }
    .into1 {
        width: 100%;
    }
}
@media (max-width: 768px) { 
    .hero  {
     flex-direction: column;
     padding-right: 5%;
     padding-top: 10%;
    }
    nav {
        display: none;
    }
    .stat {
        /* max-width: 150px; */
        padding: 10px;
        font-size: 18px;
    }
    .stat span {
        font-size: 14px;
        font-weight: 400;
    }
    header span {
        display: block;
    }
    header {
         padding: 20px ;
         z-index: 2000;
    }
    .ecosystem p {

    top: 25%;
    left:0%;
    }
    .ecosystem img {

        width: 80%;
    } 
    .hero-btn {
        flex-direction: column;
        align-items: start;
    }
  
}