.btn {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.1rem;
    color: #fff;
    background-color: var(--orange);
    /*border-radius: 0.25rem;*/
    display: inline-block;
    position: relative;
    z-index: 1;
    /*font-family: 'Poppins', sans-serif;*/

    border-color: #E8E8E8;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.26);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-radius: 10px 10px 10px 10px;
  }
.btn:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    /*border-radius: 0.25rem;*/
    border-radius: 10px 10px 10px 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
.btn:hover:before {
    width: 100%;
}

.rectangle-copy {
    width: 100%;
    height: 80px;
    background-color: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    font-weight:600;
    width: fit-content;
    padding: 0 20px;
    margin-top:20px;

    border-color: #E8E8E8;
    box-shadow: 4px 4px 0px 0px rgba(0, 0, 0, 0.26);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-radius: 10px 10px 10px 10px;
}

section{
    display: flex;
    align-items: center;
    padding: 100px 100px;
    /*padding-top:110px;
    padding-bottom:0;*/
    column-gap: 50px;
    position: relative;
}

section .section-column{
    flex: 1;
}

section .section-full{
    z-index: 1;
    /*width:100%;*/
}

section#intro{
    justify-content: center;
    text-align: center;
    background-image: url('../images/green-bg-patterns-v5.jpg');
    background-position: unset;
    padding-top:150px;
    padding-bottom: 100px;
}

section#intro:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height:120%;
    background-color: rgba(255, 255, 255, 0.4); /* Adjust for the pale effect */
}

section#intro .intro-logo{
    width:100%;
    height:auto;
    max-width:400px;
}

section#intro .intro-btn{
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

section#intro .btn{
    display:flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    width: fit-content;
}

section#intro .btn a{
    text-decoration:none;
    color:#fff;
}

section#intro h1{
    margin: 20px;
}

section#tokenomics{
    flex-direction: column;
    align-items: start;
    background-color: var(--green);
}

section#tokenomics .section-full{
    display: flex;
    justify-content: center;
    width:100%;
    flex-wrap: wrap;
    column-gap:10px;
}

section#tokenomics h2{
    display:flex;
    align-items: center;
}

section#tokenomics .section-full .toke-box{
    flex:1;
    box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.26);
    margin: 15px 15px 15px 15px;
    padding: 50px 50px 50px 50px;
    background-image: url('../images/green-bg-patterns-v5.jpg');
    background-position: inherit;
    border-radius: 15px 15px 15px 15px;
    text-align: center;
    line-height: 60px;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
section#tokenomics .section-full .toke-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height:100%;
    background-color: rgba(255, 255, 255, 0.25); /* Adjust for the pale effect */
    border-radius: 15px 15px 15px 15px;
}

section#about{
    /*background-color:var(--green);*/
}

section#about .section-left h2{
    color:var(--green);
    text-align:left;
    display:flex;
    align-items: center;
}

section#about .section-left p{
    font-size:22px;
    line-height:25px;
}

section#about .section-right{
    text-align: center;
}

section#about .section-right img{
    max-width:400px;
}

section#roadmap{
    background-color: var(--green);
    flex-direction: column;
    padding-bottom:100px;
}

section#roadmap .section-full{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    width:100%;
    row-gap:30px;
    flex-wrap: wrap;
}

section#roadmap h2{
    margin-bottom:70px;
    display:flex;
    align-items: center;
}

section#roadmap .section-full .road-box{
    /*background-color: var(--orange);*/
    background-color: #007fcc;
    border-radius: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding:30px 15px;
    min-height:300px;
}

section#roadmap .section-full .road-box h3{
    margin:0;
    margin-bottom:10px;
    color:#fff;
    -webkit-text-stroke-color: transparent;
    stroke: transparent;
}

section#memes{
    flex-direction: column;
    align-items: start;
    background-image: url('../images/green-bg-patterns-v5.jpg');
    background-position: unset;
    padding-top: 0;
    padding-top: 50px;
}

section#memes:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.4); /* Adjust for the pale effect */
}

section#memes h2{
    display: flex;
    align-items: center;
    z-index: 1;
}

section#memes .section-full{
    display: flex;
    flex-wrap: wrap;
    column-gap:10px;
    justify-content: center;
    width: 100%;
}

section#memes .section-full .vid-box video{
    max-width:100%;
    height:400px;
    background-color: #000;
}

section#community{
    flex-direction: column;
    background-color: #007fcc;
}

section#community h2{
    color:#fff;
    display:flex;
    align-items: center;
}

section#community .comm-box{
    margin-top:20px;
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

section#community .btn{
    display: flex;
    align-items: center;
    width: fit-content;
    column-gap: 10px;
    font-size: 20px;
    min-width: 0;
    line-height: 25px;
    padding: 10px 15px;
}

@media only screen and (max-width: 63.9375rem) {
    .rectangle-copy {
        font-weight:500;
        font-size: 20px;
    }

    section{
        flex-direction:column;
        padding: 0 30px;
        padding-top:100px;
    }

    section .section-column{
        margin-bottom: 50px;
        text-align:center;
    }

    section#about h2{
        justify-content: center;
    }

    section#memes{
        padding-bottom:100px;
    }

    section#community{
        padding-bottom:100px;
    }
}

@media only screen and (max-width: 700px) {
    .rectangle-copy {
        font-size: 16px;
    }

    section{
        flex-direction:column;
        padding: 0 15px;
        padding-top:100px;
    }

    section#memes .section-full{
        flex-direction: column;
    }

    section#memes .section-full .vid-box video{
        width:100%;
    }

    section#tokenomics .section-full .toke-box{
        flex:auto;
        width:100%;
    }

    section#roadmap .section-full .road-box{
        flex:auto;
        width:100%;
    }
}

@media only screen and (max-width: 575px) {
    .rectangle-copy {
        font-size: 12px;
        padding: 0 8px;
        height: 54px;
        margin: auto;
        margin-top: 20px;
    }
}