body {
    margin: 0;
    color: #333;

    background-color: rgba(17, 17, 17, 1);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.4;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}



.navbar {
    z-index: 10;

    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1%, 2%;
    background-color: rgba(17, 17, 17, 0.7);
}

.navbar .logo>img {
    margin-left: 20px;
    height: 96px !important;
    width: 96px !important;
}

.navbar .menus {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.navbar-link {
    color: #e2e2e2;
    text-decoration: none;
    margin-left: 20px;
}


.menus {
    color: #70f37d;
    text-decoration: none;
    padding: 10px 15px;
    border: 1px solid #70f37d;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.menus>a:hover {
    color: #70f37d;
    /*font-size: larger;*/

}



.hamburger {
    margin-right: 20px;
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #70f37d;
}





.section-content {
    max-width: 1200px;
    max-height: auto;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 21, 0, 0.8);
    border: 1px solid #303030;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    top: 102px;

    justify-content: space-between;

    padding: 20px;
    margin: 10px;
    box-sizing: border-box;


}

.section-image {
    max-width: 40%;
    height: auto;
    margin: 20px;
    border-radius: 20px;
    flex-shrink: 1;
    flex: 1;

}

.text-content {
    color: #fff;
    flex: 2;

}

.section-title {
    color: #70f37d;
    padding-bottom: 10px;
    margin-bottom: 10px;
}




.bullet-points , .roadmap-points {
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 20px;
}

.bullet-points li , .roadmap-points li {
    list-style-type: none;
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: larger;
}



.bullet-points li:before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #70f37d;
    font-size: 24px;
}




.green-tick,.gray-tick{
    display: flex;
    
}
.green-tick span{
   
    font-size: 24px;
    color:#70f37d;
    margin-right: -10px;
}
.gray-tick span{
   
    font-size: 24px;
    color:gray;
    margin-right: -10px;

}
.copy-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.copy-icon-button img {
    width: 24px;
    height: 24px;
}


.bullet-points li p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copy-icon-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.copy-icon-button img {
    width: 24px;
    height: 24px;
}


.button-container {
    text-align: center;
}

.buy-button {
    width: 100%;
    background-color: black;
    color: #70f37d;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 4px;
    cursor: pointer;
    border: 1px solid #70f37d;
    border-radius: 16px;
    transition-duration: 0.4s;
    display: inline;
}

.buy-button:hover {
    background-color: #70f37d;
    color: #000;
}

.social-links {
    flex: 1;
}

.community-content a {
    outline: none;
    text-decoration: none;


}

.community-content img {
    display: inline-block;

    width: 30%;

}




.email-button {
    width: auto;
    background-color: black;
    color: #70f37d;

    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    margin: 4px;
    cursor: pointer;
    border: 1px solid #70f37d;
    border-radius: 16px;
    transition-duration: 0.4s;
}

.email-button:hover {
    background-color: #70f37d;
    color: #000;
}




@media (max-width: 768px) {
    body {
        font-size: 12px !important;
    }

    .navbar .menus {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #111;
        width: 80%;
        text-align: center;
        padding-top: 10px;
        border-top: 1px solid #333;
        font-size: 24px !important;
    }

    .navbar .menus.active {
        display: flex;
    }

    .navbar .hamburger {
        display: flex;
    }


    .section-content {
        flex-direction: column;
        align-items: stretch;
        max-width: 80%;
    }

    .howtobuy {
        margin: 10px;
    }

    #contract-address {
        font-size: 0.5rem !important;
    }


    .section-image {
        max-width: 100%;
        margin: 10px 0;
        border-radius: 10px;
    }

    .text-content {
        max-width: 100%;
        margin: 10px 0;
        border-radius: 10px;
    }

    .copy-icon-button img,
    .community-content img {
        width: 48px;
        height: 48px;
    }


  

    .bullet-points li:before {

        font-size: 16px;
    }
	.green-tick span ,.gray-tick span{
   
    	font-size: 16px;

	}
}

