@tailwind base;
@tailwind components;
@tailwind utilities;


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: font1;
    src: url(/assets/font/Super-Ocean-Personal-Use.ttf);
}

h6 {
    font-family: font1;
}

html {
    scroll-behavior: smooth;
}

.zoom-element {
    animation: zoomInOut 3s infinite;
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}



body {
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #DDED00;
}

.nav {
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 2vw;
}

.links {
    font-family: font1;
    color: #50621B;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.links img {
    width: 50px;
}

.about {
    padding: 5vw 2vw;
    position: relative;

}

.box {
    background-image: url(/assets/images/block_grass.svg.png);
    padding: 10vw;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48vw;
    margin: auto;
    margin-top: -10vw;
    position: relative;
    z-index: 99;
}

.box h5 {
    font-family: font1;
    color: #000;
    transform: rotate(6deg);
}

.about h3 {
    font-family: font1;
    font-size: 80px;
    text-align: center;
    color: #2F3A0E;
    transform: rotate(10deg);

}

.logo {
    position: absolute;
    right: 10%;
    width: 100%;
    max-width: 20vw;
    top: 30%;
}


.blur-lyr {
    background-image: url(/assets/images/blur-lyr.png);
    padding: 5vw 5vw 10vw 5vw;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 999;
}

 

.blur-lyr h5 {
    font-family: font1;
    color: #000000;
    font-size: 48px;
}

.video {
    background-image: url(/assets/images/Background\ wrapper.png);
    padding: 10vw 5vw 5vw 5vw ;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
    height: 70vw;
    justify-content: space-between;
    margin-top: -5vw;
}

.video h3 {
    color: #87FF32;
    font-size: 5vw;
    font-family: font1;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    transform: rotate(-10deg);
}

.video img {
    width: 100%;
    max-width: 50vw;
    padding-top: 5vw;
    margin: auto;
}

.ROADMAP {
    padding: 5vw 20vw;
}

.ROADMAP h3 {
    color: #2F3A0E;
    font-size: 5vw;
    font-family: font1;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: black;
    transform: rotate(10deg);
    text-align: center;
}


.how-box-1 {
    background-image: url(/assets/images/how_block_1.svg.png);
    padding: 7vw;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
}



.how-box-1 ul li {
    color: #000;
    font-family: font1;
    transform: rotate(-2deg);
}

.how-box-2 {
    background-image: url(/assets/images/how_block_2.svg.png);
    padding: 8vw;
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.how-box-2 ul li {
    color: #000;
    font-family: font1;
    transform: rotate(5deg);

}

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4vw 2vw;
    background-color: #7A654A;
    flex-wrap: wrap;
    padding-top: 8vw;
}

.footer-links a {
    padding: 1vw 3vw;
    background-color: #295117;
    margin-left: 12px;
    font-family: font1;
    color: #fff;
    border-radius: 8px;
    border: 3px solid #000;
    box-shadow: 0px 4px 0px 0px rgba(0, 0, 0, 1);
    transition: all 0.5s ease-in-out;
}

.footer-links a:hover {
    box-shadow: none;
}


@media screen and (max-width: 480px) {
     
    .links {
        font-size: 8px;
        gap: 12px;
    }

    .links img {
        width: 24px;
    }

    .box {
        width: 100%;
        padding: 15vw;
    }

    .box h5 {
        font-size: 12px;
        transform: rotate(8deg);
        margin-left: 5vw;
    }

    .about {
        padding: 10vw 2vw;

    }

    .logo {
        position: absolute;
        right: 0%;
        width: 100%;
        max-width: 40vw;
        top: 50%;
    }

    .blur-lyr {
        padding: 4vw 4vw 8vw 4vw;
    }

    .blur-lyr h5 {
        font-family: font1;
        color: #000000;
        font-size: 24px;
    }

    .video{
        height: 100vw;
    }

    .video h3 {
        font-size: 7vw;
    }

    .video img {
        width: 100%;
        max-width: 50vw;
        padding-top: 10vw;
        margin: auto;
    }

    .ROADMAP {
        padding: 10vw 2vw;
    }

    .ROADMAP h3 {

        font-size: 10vw;

    }

    .how-box-1 {
        padding: 9.5vw;

    }

    .how-box-1 ul li {
        font-size: 10px;
    }

    .how-box-2 ul li {
        font-size: 10px;
    }
    .how-box-2 { 
    padding: 10vw;
}

    footer {
        justify-content: center;
        gap: 20px;
    }
}