@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Wintermouse;
    src: url(/assets/font/Mrs.\ Wintermouse.ttf);
}

body {
    font-family: "Single Day", cursive;
    font-size: 16px;
    font-weight: 400;
}

h5 {
    font-family: Wintermouse;
}

h1 {
    background: linear-gradient(#FFCA00, #FF9B05);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 4px;
    text-transform: uppercase;
    font-family: Wintermouse;
}


.header {
    background-color: #BFDCFF;
    background-image: url(/assets/images/header.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 60vw;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 0vw 5vw;
    position: relative;

}


.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    top: 2vw;
    right: 2vw;
    position: absolute;
    z-index: 99;
}

.header a img {
    width: 100%;
    max-width: 5vw;
}

.header a {
    transition: all 0.5s ease-in-out;
}

.header a:hover {
    transform: scale(1.1);
}

.header .buy_now {
    border: 4px solid #000;
    padding: 0.5vw 1.5vw;
    background-color: #FFCA00;
    font-family: Wintermouse;
    font-size: 2vw;
    border-radius: 1vw;

}



.main {
    margin-top: -20vw;
    margin-bottom: 5vw;
    transform: rotate(-5deg);
}

.header h1 {
    font-size: 7vw;
    background: linear-gradient(#FFCA00, #FF9B05);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 4px;
    text-transform: uppercase;
    font-family: Wintermouse;
    margin-top: -2vw;
}

.header h2 {
    font-size: 4vw;
    text-align: center;
    font-family: Wintermouse;
    color: #fff;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 3px;

}

.social_main {
    position: absolute;
    bottom: 3vw;
    right: 6vw;
}

.social_box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1vw 2vw;
    border: 3px solid #000;
    border-radius: 0.5vw;
    gap: 2vw;
    background-color: #fff;
    transform: rotate(-2deg);
}

.social_box img {
    width: 100%;
    transform: scale(1.2);
}

.social_box h3 {
    font-family: Wintermouse;
    font-size: 1.5vw;
    line-height: 1.5vw;
}

.social_box p {
    font-size: 1.5vw;
}

/* social_box 2 */
.social_box_2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1vw 2vw;
    border: 3px solid #000;
    border-radius: 0.5vw;
    gap: 2vw;
    background-color: #fff;
    transform: rotate(2deg);
}

.social_box_2 img {
    width: 100%;
    transform: scale(1.2);
}

.social_box_2 h3 {
    font-family: Wintermouse;
    font-size: 1.5vw;
    line-height: 1.5vw;
}

.social_box_2 p {
    font-size: 1.5vw;
}

.ca_section {
    background-color: #8B20D5;
    padding: 1.5vw 3vw;
    display: flex;
    align-items: center;
    border-top: 4px solid #000;
    border-bottom: 4px solid #000;
    justify-content: space-between;
    color: #fff;
    gap: 5vw;
    flex-wrap: wrap;
    margin-top: -3vw;
    position: relative;
    z-index: 99;

}

.ca_section .social {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.ca_section .social h5 {
    font-size: 2vw;
    color: #fff;
}

.ca_section .ca_links {
    display: flex;
    align-items: center;
    gap: 1vw
}

.ca_section .ca_links img {
    width: 100%;
    max-width: 4vw;
}

.ca_section .ca {
    background-color: #190F0694;
    border-radius: 1vw;
    padding: 0.8vw 1vw 0.8vw 3vw;
    display: flex;
    align-items: center;
    gap: 2vw;

}

.ca_section .ca h5 {
    font-size: 1.5vw;
}

.ca_section .ca span {
    background-color: #fff;
    padding: 0.5vw;
    border-radius: 0.5vw;
    border: 1px solid #000;
    font-family: Wintermouse;
    color: #000;
    font-size: 1.5vw;

}



/* about  */
.about {
    background-color: #3DFF94;
    background-image: url(/assets/images/about.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 5vw 15vw;
    position: relative;
}

.a-1 {
    position: absolute;
    width: 100%;
    max-width: 10vw;
    top: 20vw;
    left: 5vw;
    animation: topbuttom 1s ease-in-out infinite alternate;

}

.animation {
    animation: topbuttom 1s ease-in-out infinite alternate;
}

.animation_2 {
    animation: fly-left-right 1s ease-in-out infinite alternate;
}

@keyframes topbuttom {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(20px);
        /* Adjust the value to control the distance */
    }
}

@keyframes fly-left-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(20px);
        /* Adjust the value to control the distance */
    }
}

.a-2 {
    position: absolute;
    width: 100%;
    max-width: 10vw;
    top: 10vw;
    right: 5vw;
    animation: fly-left-right 3s ease-in-out infinite alternate;
}

.about h1 {
    font-size: 5vw;
    color: #00DCFC;
    text-transform: uppercase;
    text-align: center;
    line-height: 5vw;
}

.about p {
    font-size: 1.5vw;
    text-align: center;
    margin-top: 1vw;
}

.about a {
    border: 4px solid #000;
    padding: 0.5vw 1.5vw;
    background-color: #FFCA00;
    font-family: Wintermouse;
    font-size: 2vw;
    border-radius: 1vw;
    margin-top: 2vw;

}

.about a {
    transition: all 0.5s ease-in-out;
}

.about a:hover {
    transform: scale(1.1);
}


marquee {
    border-bottom: 4px solid #000;
    border-top: 4px solid #000;
    padding: 1vw;
    background-color: #FFCA00;
    position: relative;
    z-index: 99;
}

marquee h5 {
    font-size: 2vw;
}


/* tokenomics  */
.tokenomics {
    background-color: #3DFFDC;
    background-image: url(/assets/images/tecmonic.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 73vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 10vw 10vw;
    position: relative;
    margin-top: -2vw;
}

.tokenomics h1 {
    font-size: 5vw;
    text-transform: uppercase;
    text-align: center;
    line-height: 5vw;
    transform: rotate(-3deg);
}

.tokenomics h2 {
    font-size: 5vw;
    text-align: center;
    font-family: Wintermouse;
    color: #fff;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 3px;
    margin-left: 15vw;
    transform: rotate(-3deg);
}

.tokenomics .address {
    transform: rotate(-3deg);
}

.tokenomics .ca {
    background-color: #71AAADB2;
    border-radius: 1vw;
    padding: 0.8vw 1vw 0.8vw 3vw;
    display: flex;
    align-items: center;
    gap: 2vw;
    color: #fff;
    margin-top: 2vw;

}

.tokenomics .ca h5 {
    font-size: 1.5vw;
}

.tokenomics .ca span {
    background-color: #fff;
    padding: 0.5vw;
    border-radius: 0.5vw;
    border: 1px solid #000;
    font-family: Wintermouse;
    color: #000;
    font-size: 1.5vw;
}

.tokenomics .supply {
    display: flex;
    align-items: center;
    gap: 2vw;
    transform: rotate(0deg);
    margin-top: 5vw;
    justify-content: center;
    margin-left: 20vw;
}

.tokenomics .supply h1 {
    font-size: 5vw;
    text-transform: uppercase;
    text-align: center;
    line-height: 5vw;
    -webkit-text-stroke-width: 2px;
}

.tokenomics .supply h3 {
    font-size: 2vw;
    text-align: center;
    font-family: Wintermouse;
    color: #fff;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 2px;
}


/* roadmap   */

.roadmap {
    background-image: linear-gradient(to bottom, #9d38e3, #8f31d0, #822abe, #7524ac, #681d9a);
    padding: 5vw 10vw;
    border-top: 4px solid #000;
}

.roadmap h3 {
    font-size: 6vw;
    text-transform: uppercase;
    text-align: center;
    line-height: 5vw;
    background: linear-gradient(#FFF9F2, #E5B585);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 4px;
    font-family: Wintermouse;
}

.roadmap .box_1 {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roadmap .box_1 h5 {
    font-size: 3vw;
}

.roadmap .box_1 ul {
    font-family: Wintermouse;
    font-size: 1.5vw;
    margin-left: 1.5vw;
}

.roadmap .box_2 img {
    width: 100%;
    max-width: 32vw;
}


footer {
    background-image: url(/assets/images/footer.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 10vw;
    display: flex;
    align-items: center;
    padding: 0vw 10vw;
    gap: 10vw;
}

footer .footer_links {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

footer .footer_links a img {
    width: 100%;
    max-width: 10vw;
    transform: scale(1.3);
}

.Copyright {
    font-family: inter;
}

.Copyright h4 {
    font-weight: 700;
    font-family: inter;
    font-size: 1vw;
}

.Copyright p {
    font-size: 0.8vw;
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 8vw;
        -webkit-text-stroke-width: 2px;

    }

    .header h1 {
        font-size: 8vw;
        -webkit-text-stroke-width: 2px;

    }

    .header h2 {
        -webkit-text-stroke-width: 1px;

    }

    .header .buy_now {
        border: 2px solid #000;
        padding: 0.5vw 1.5vw;
        background-color: #FFCA00;
        font-family: Wintermouse;
        font-size: 2vw;
        border-radius: 1vw;

    }

    .social_box {
        border: 1px solid #000;
    }


    .social_box_2 {
        border: 1px solid #000;
    }

    .ca_section {
        gap: 2vw;
        justify-content: center;
        border-top: 2px solid #000;
        border-bottom: 2px solid #000;


    }



    .ca_section .ca h5 {
        font-size: 2.5vw;
    }

    .ca_section .ca span {
        cursor: pointer;
        font-size: 2.5vw;
    }

    /* about  */
    .about p {
        font-size: 2vw;
        text-align: center;
        margin-top: 1vw;
    }

    .about a {
        border: 1px solid #000;

    }



    marquee {
        border-bottom: 2px solid #000;
        border-top: 2px solid #000;
    }

    marquee h5 {
        font-size: 2.5vw;
        letter-spacing: 1px;
    }

    .tokenomics h1 {
        -webkit-text-stroke-color: black;
        -webkit-text-stroke-width: 1px;
    }

    .tokenomics h2 {
        -webkit-text-stroke-color: black;
        -webkit-text-stroke-width: 1px;
    }

    .tokenomics .supply h1 {
        -webkit-text-stroke-width: 1px;
        font-size: 7vw;
    }

    .tokenomics .supply h3 {

        -webkit-text-stroke-color: black;
        -webkit-text-stroke-width: 1px;
        font-size: 4vw;
    }

    .roadmap h3 {
        -webkit-text-stroke-width: 1px;
        font-family: Wintermouse;
    }

    footer {
        flex-wrap: wrap;
        height: 25vw;
        padding: 5vw;
        gap: 2vw;
    }

    .Copyright h4 {
        font-size: 2vw;
    }

    .Copyright p {
        font-size: 1.5vw;
    }

    footer .footer_links a img {
        width: 100%;
        max-width: 6vw;
        transform: scale(1);
    }
}