@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: Gloss_And_Bloom;
    src: url(/assets/font/Gloss_And_Bloom.ttf);
}

html {
    scroll-behavior: smooth;
}

p {
    font-size: 1.2vw;
}

h1 {
    font-size: 4vw;
    font-weight: 800;
    text-transform: uppercase;
}

span {
    font-family: Gloss_And_Bloom;
    color: #FF3B27;
    font-size: 2vw;
}

body {
    font-family: "Jost", sans-serif;
    font-weight: 400;
    color: #fff;
    background-color: #000;
}


.main,
.bg_paper,
.trump {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;

}

.header {
    height: 93vw;
    position: relative;
    z-index: 9;
}

.smok {
    position: absolute;
    top: 0;
    opacity: 0.2;
    width: 100%;
    z-index: -1;
    height: 80vw;
}


.main {
    background-image: url('../images/main.png');
    height: 221vw;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw 5vw;
}

.nav_main {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.nav_links {
    display: flex;
    align-items: center;
    gap: 4vw;
    background-color: #000;
    border: 1px solid #282828;
    border-radius: 30px;
    padding: 1vw 3vw;
    font-size: 1.3vw;
}

.social {
    display: flex;
    align-items: center;
    gap: 0.5vw;

}

.social a img {
    width: 4vw;
}

.social a .buy {
    width: 10vw;
}


/* about */
.about h1 {
    text-align: center;
    font-size: 5vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 5vw;
    position: relative;
    margin-bottom: 4vw;
}

.about h1 span {
    position: absolute;
    text-align: center;
    bottom: -2.5vw;
    left: 42vw;
    font-size: 2vw;
    letter-spacing: 5px;
}

.about p {
    width: 30vw;
    margin: auto;
    text-align: center;
    opacity: 0.8;
    font-size: 200;
}

/* tokenomice */

.tokenomice {
    position: relative;
}

.tokenomice img {
    width: 100%;
}

.tokenomice .content {
    position: absolute;
    right: 10vw;
    top: 25vw;

}

.tokenomice .content span {
    font-size: 3vw;
    color: #fff;
    margin-bottom: 3vw;
    display: block;
}

.tokenomice .content .text-1 {
    background-color: #000000c4;
    text-align: center;
    color: #FF3B27;
    font-size: 1.5vw;
}

.tokenomice .content .text-2 {
    margin-bottom: 2vw;
    text-align: end;
    font-size: 1.5vw;
}


/* slider  */
.home_slider-container {
    width: 100%;
    overflow: hidden;
}


.slider {
    background-color: #FF6B00;
}

.slider img {
    width: 20vw;
}

.slider_2 img {
    width: 20vw;
}

.home_slider-left {
    animation: slide-left 20s linear infinite;
    display: flex;
    width: 100%;
    gap: 0.5vw;
    width: 100%;
}

.slider_2 {
    background-color: #FF6B00;
    /* transform: ; */
    transform: translateY(-1vw) rotate(-5deg);
    margin-bottom: 4vw;
}

.home_slider-right {
    animation: slide-right 20s linear infinite;
    display: flex;
    width: 100%;
    gap: 0.5vw;

}

.home_slide {
    flex: 0 0 25%;
    width: 100%;
}

.home_slide img {
    width: 100%;
}

.bg_paper {
    background-image: url('../images/bg-paper.png');
    z-index: -1;
}


/* howtobuy */

.howtobuy {
    padding: 0 10vw;
    margin-top: 5vw;

}

.howtobuy h1 {
    font-size: 5vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 5vw;
    position: relative;
    margin-bottom: 4vw;
}

.howtobuy h1 span {
    position: absolute;
    bottom: -3vw;
    left: 0vw;
    font-size: 2vw;
    letter-spacing: 5px;
}

.howtobuy a .buy {
    width: 13vw;
    transition: all 0.3s ease-in-out;
}

.howtobuy a .buy:hover {
    transform: scale(1.1);
}

.howtobuy p {
    font-size: 1.3vw;
    opacity: 0.8;
}

.howtobuy .a1 {
    animation: fadeIn 2S cubic-bezier(0.165, 0.84, 0.44, 1) infinite alternate;
}


.roadmap {
    background-image: linear-gradient(to bottom, #ff3b27, #ff581c, #ff7010, #ff8504, #ff9900);
    padding: 5vw;
    margin: 5vw;
    color: #000 !important;
}

.roadmap span {
    color: #000;
    font-size: 3vw;
}

.roadmap .track {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2vw;
}

.roadmap .track b {
    font-size: 2vw;
}

.roadmap .track p {
    font-size: 1.5vw;
}


/* Keyframes for sliding left */
@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Keyframes for sliding right */
@keyframes slide-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}





/* trump */

.trump {
    background-image: url('../images/Donald-trump.gif');
    height: 65vw;
    margin-top: -8vw;
    padding: 5vw;
    z-index: 9;
    position: relative;
    overflow: hidden;

}

.trump h1 {
    font-size: 5vw;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 5vw;
    margin-bottom: 1vw;
}

.trump h1 span {
    left: 0vw;
    font-size: 2vw;
    letter-spacing: 5px;
    z-index: -1;
    margin-bottom: 3vw;
}


.footer {
    background-image: url('../images/bg-paper.png');
    z-index: -1;
    position: relative;
    margin-top: -5vw;
}

.footer .join {
    padding-top: 15vw;
}

.footer .join img {
    width: 15vw;
    position: absolute;
    top: -8vw;
    left: 20vw;
    animation: d3 3s 0s linear infinite alternate;
}



@keyframes d3 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(15deg);

    }

}

.footer .join h1 {
    font-size: 13vw;
    text-align: center;
}

.footer .f_social {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3vw;
}

.footer .f_social p {
    color: #FF6B00;
}

.footer .f_social a img {
    width: 5vw;
}

@media screen and (max-width: 480px) {

    p {
        font-size: 2.3vw;
    }

    .nav_links {
        font-size: 1.8vw;
    }

    .header {
        height: 88vw;
    }

    .social a img {
        width: 5vw;
    }

    .social a .buy {
        width: 12vw;
    }

    .about p {
        width: 80vw;
    }

    .about h1 span {
        bottom: -4vw;
        left: 38vw;
        font-size: 2vw;
    }

    .tokenomice .content {
        position: absolute;
        right: 8vw;
        top: 28vw;

    }

    .tokenomice .content span {
        font-size: 4vw;
    }

    .tokenomice .content .text-1 {
        font-size: 2.5vw;
        padding: 0 1vw;
    }

    .tokenomice .content .text-2 {
        font-size: 2.4vw;
        padding: 0 1vw;
    }

    .howtobuy h1 {
        font-size: 7vw;
        line-height: 7vw;
    }

    .howtobuy h1 span {
        position: absolute;
        bottom: -4vw;
        font-size: 3vw;
    }

    .howtobuy a .buy {
        width: 16vw;
    }

    .howtobuy p {
        font-size: 2vw;
        opacity: 0.8;
    }

    .roadmap .track b {
        font-size: 2.5vw;
    }

    .roadmap .track p {
        font-size: 1.8vw;
    }

    .trump h1 {
        font-size: 5vw;
    }

    .trump span {
        left: 0vw;
        font-size: 3vw;
        margin-bottom: 2vw;
    }

    .footer .join img {
        width: 15vw;
        position: absolute;
        top: 7vw;
        left: 20vw;
        animation: d3 3s 0s linear infinite alternate;
    }
}