html, body, *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    background: linear-gradient(#6acbff, #A2DAF9);
    font-family: 'Lilita One', cursive;
    overflow-x: hidden;
}
a{
    color: white;
    text-decoration: none;
}

/* ================HEADER============================= */
header{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
    background-color: #16adff;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  
  background-image: url(../img/bgg.png);
  background-size: 100%;
}
.header_item{
    padding: 20px;
    font-size: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
     
}

.hover {
    transition: all 0.3s ease;
}

.hover:hover {
    transform: scale(1.1);
}



.header_item img{
    width: 25%;
}
.button_buy{
    width: 600px;
    background-color: #16adff;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.btn_buy{
    color: white;
    font-weight: 700;
    font-size: 25px;
    padding: 20px 50px;
    background-color: #F0750A;
    border-radius: 50px;
    cursor: pointer;
}

.copy-btn {
    background: #16adff00;
    font-family: 'Lilita One', cursive;
  border: none;
  color: #ffffff;
  font-size: 30px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  
}
/* =============================LOGO====================== */
.logo{
    display: flex;
    justify-content: center;
    margin-top: 50px;
    position: relative;
}
.logo div img{
    width: 100%;
}
.title_pop1, .title_pop2{
    position: absolute;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
}
.logo .title_pop1{
    top: 10%;
    right: 20%;
    transform: rotate(-20deg);
}
.title_pop2{
    top: 50%;
    left: 20%;
    transform: rotate(20deg);
}
/* ================================================================ */
.dontmiss{
    font-size: 80px;
    text-align: center;
    font-weight: 900;
    color: #ffffff;
}
.desc{
    color: #ffffff;
    font-size: 30px;
    text-align: center;
}
.contract{
    margin: 30px 0px;
    display: flex;
    justify-content: center;
}
.contract>div{
    background-color: #F0750A;
    padding: 1% 3%;
    color: white;
    font-weight: 800;
    font-size: 30px;
    line-break: anywhere;
    border-radius:50px;
}
.about{
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.about_title, .tokenomics_title{
    color: white;
    font-size: 80px;
    font-weight: 800;
    font-weight: 800;
}
.about_desc{
    color: white;
    font-size: 30px;
    max-width: 800px;
    text-align: center;
}

.about_img {
    display: flex;
    margin-top: 50px;
    justify-content: center;
    width: 100%;
}

.about img{
    width: 50%;
}

.hero img{
    width: 50%;
}

/* ========================== */
.tokenomics{
    
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.tokenomics_container{
    display: flex;
    margin: 50px 0px;
    max-width: 1200px;
    gap: 100px;
    display: flex;
    align-items: center;
}
.tokenomics_container .left .tokenomics_header{
    color: #ffffff;
    font-weight: 700;
    font-size: 30px;
}


.tokenomics_container .left .tokenomics_body{
    background-color: #16adff;
    font-size: 25px;
    color: white;
    padding: 50px;
    border-radius: 50px;
    margin-top: 20px;
    text-align: center;
}
.tokenomics_container .right{
    background-color: #16adff;
    border-radius: 50%;
}



.right_container{
    padding: 10px;
    border-radius: 50%;
    background-color: #16adff;
    border: 30px solid #16adff;
    position: relative;
}
.tokenomics_logo img{
    width: 300px;
}
/* ==================== */
footer, .footer{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer{
    width: 1000px;
    padding: 20px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background-color: #16adff;
}
.twitter, .telegram{
    background-color: white;
    border-radius: 50%;
    padding: 10px;
}
.twitter img, .telegram img{
    width: 50px;
}
.email{
    text-align: center;
    margin: 50px 0px;
    font-size: 30px;
}
.email a{
    color: #29110E;
}



@media only screen and (max-width: 800px) {

    .dontmiss{
    font-size: 50px;
   
}

   .copy-btn {
    font-size: 17px;
   }

    .desc {
       font-size: 30px;
    }

    .contract>div{
        font-size: 17px;
    }

    .title_pop1, .title_pop2{
    
    font-size: 14px;
    
}
    .tokenomics_container{
        flex-direction: column;
    }
    header{
        gap: 0px;
        padding: 0px;
    }
    .header_item{
        font-size: 14px;
    }

    .header_item img{
        width: 30%;
    }
    .contract>div{
        padding: 20px;
        text-align: center;
    }
    .tokenomics_logo img{
        width: 200px;
    }
    .about_title, .tokenomics_title{
        font-size: 50px;
    }
    .button_buy{
        width: 300px;
    }
    .button_buy a:last-child{
        display: none;
    }
}
