
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

a{
    text-decoration: none;
}

section{
    display:  flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    gap: 30px;
} 
 #hero{
    background: rgb(34, 193, 195);
        background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    /* background-image: url(./img/SL-093020-35920-01.jpg); */
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: black;
    border-radius: 30px;
    position: relative;
}

header h1{
    font-size: 20px;
}
.av{
    display: flex;
    gap: 1rem;
    flex-direction: column;
}
.mudra{
    padding: 1rem;
    width: 12rem;
    justify-self: center;
    align-self: center;
}
header img{
    width: 80px;
}
  #wrap-text {
   width: 300px;
   padding: 12x 20px;
   border: 1px solid black;
   background-color: #fff;
   border-radius: 5px;
   font-size: 19px;
   overflow-x: scroll;
   color: black;
  }
  #wrap-text::-webkit-scrollbar{
    display: none;
  }
  #copy-btn:active{
    background: rgb(190, 125, 5);
  }
  #copy-btn:before{
    content: "Copied";
    position: absolute;
    top: -50px;
    right: 0px;
    background-color: darkorange;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 15px;
    display: block;
  }

  #copy-btn:after{
    content: "";
    position: absolute;
    top: -20px;
    right: 25px;
    width:  10px;
    height: 10px;
    transform: rotate(45deg);
  }

  #copy-btn.active button:before,
    #copy-btn.active button:after {
    display: block;
}
.Whb{
    background-color: rgb(0, 0, 0);
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.Whb button{
    padding: .5rem 2rem;
    width: 13rem;
    margin: 1rem;
}
.img{
    margin-top: 1rem;
    width: 22rem;
   animation: bounce 2s ease-in-out infinite;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.3rem;
    text-align: center;
}

main h1{
    font-size: 25px;
}

@keyframes bounce{
    0% {transform: translateY(0px)}
    50%{transform: translateY(-20px)}
    
}
.menu :hover{
    cursor: pointer;
}
.nav-2 ul {
    display: none;
    gap: 1rem;
   list-style: none;
   padding: 1rem;
   text-decoration: none;
}
.nav-2 ul li:hover{
    cursor: pointer;
}
.text{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.about-us{
    justify-content: center;
    align-items: center;
    background: rgb(34, 193, 195);
        background: linear-gradient(0deg, rgba(253, 187, 45, 1) 0%, rgb(22, 107, 109) 100%);
        /* background-image: url(./img/SL-093020-35920-01.jpg); */
      
}
.about-us h1{
color: rgb(255, 255, 255);
}
.story{
    text-align: center;
    color: rgb(255, 255, 255);
}

.mission{
    text-align: center;
    color: rgb(255, 255, 255);
}

.Tokenomics{
background: rgb(34, 193, 195);
    background: linear-gradient(0deg, rgba(34, 193, 195, 1) 0%, rgba(253, 187, 45, 1) 100%);
    /* background-image: url(./img/SL-093020-35920-01.jpg); */
    text-align: center;
    justify-content: center;
}

.mix{
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.nom{
    display: flex;
    width: 80%;
    height: auto;
    padding: 2rem;
    flex-direction: column;
    border-radius: 20px;
        background: #ede3e3;
        box-shadow: inset 26px 26px 42px #a69f9f,
            inset -26px -26px 42px #ffffff;
}
.nom p {
    color: black;
    font-weight: 600;
}
.navbar{
    display: none;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100vh;
    padding: 4rem;
    background-color: black;
   
}

.show{
    display: block;
    position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        height: 100vh;
        padding: 4rem;
        background-color: black;
        animation: fadeinLeft 2s ease-in-out infinite;
}

.navbar ul{
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 1rem;
    justify-content: center;
    align-items: center;
}
.roadmap{
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
}
.roadmap img{
    object-fit: contain;
    width: 100%;
    border-radius: 5%;
    padding: 1rem;
    border: 2px solid rgb(0, 0, 0);
}
button{
    width: 10rem;
    padding: .5rem;
    border-radius: 30px;
    border: none;
    background-color: darkorange;
    text-decoration: none;
    cursor: pointer;
}
.contact{
    background-color: black;
    text-align: center;
}
.socials{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-top: 2px solid white;
    text-align: center;
    justify-content: center;
}
@media screen and ( min-width: 1100px ) {
     *{
        font-size: 22px;
    }
    section{
        padding: 4rem 9rem;
    }
    main{
        flex-direction: row;
        text-align: left;
        font-size: 2cap;
    }
    .mix{
        flex-direction: row;
        padding: 3rem 0;
    }
    .nom{
        max-width: 30%;
    }
    nav svg {
         display: none;
    } 

        .nav-2 ul {
            display: flex;
            gap: 1rem;
            list-style: none;
            padding: 1rem;
            text-decoration: none;
        }

        .navbar{
            display: none;
        }
}