:root {
    --c1: #03358A;
    --c2: #191919;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--c2);
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    transition: .8s all;
    font-family: 'Super Blasters', sans-serif;
                                                
}

body {
    background: var(--c1);
    min-height: 100vh;
    height: fit-content;
    padding-bottom: 100px;
    position: relative;
}

.tint {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.096); 
    pointer-events: none;

}


header {
    width: 100%;
    height: 12vh;
    background: var(--c2);
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 35px;
    animation: ani1 1s linear;
    transform: translateY(0);
}

header.visible {
    backdrop-filter: blur(10px);
    position: fixed;
    background: #191919e6;
    z-index: 100;
}


@keyframes ani1 {
    from{
        transform: translateY(-100px);
    }
    to{
        transform: translateY(0px);
    }
}

header a {
    color: white;
    font-size: 20px;
    font-weight: bolder;
}

header a:hover {
    transform: scale(.8);
    color: rgb(216, 215, 215);
}

main {
    width: 100%;
    min-height: 88vh;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 35px;
    padding-top: 50px;
}

main img {
    width: 250px;
    border-radius: 35px;
    border: 25px solid white;


}



main a {
    background: #E7EFE1;
    padding: 15px 45px;
    border-radius: 35px;
    border: 6px solid var(--c2);
    font-weight: bolder;
    font-size: 20px;
    

}

main a:hover {
    /* padding: 15px 90px; */
    border: 6px solid transparent;
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;    

}


.socials {
    width: 100%;
    height: 65vh;
    margin-top: 100px;
    transform: scale(.2);
    overflow: hidden;
    padding-top: 50px;
}


.socials.visible {
    transform: scale(1);
}


.socials .title {
    width: 100%;
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials .title h1 {
    font-size: 40px;
}

.socials .links {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
}

.socials .links img {
    width: 65px;
    height: 65px;
    background: #41B4E6;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
    transform: translateX(1000px);

}

.socials .links img:nth-child(even) {
    transform: translateX(-1000px);
}

.socials.visible .links img {
    transform: translateX(0);
}




.socials .links img:hover {
    transform: scale(1.4);
    box-shadow: none;
}

.socials .links img:last-child {
    background: white;
    
}

.socials .ca {
    width: 100%;
    height: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.socials .ca h1 {
    font-size: 20px;
}

.socials .ca h1 span {
    color: white;
}

.title2 {
    width: 100%;
    height: 35vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title2 h1 {
    font-size: 40px;
}

.about {
    width: 100%;
    min-height: 80vh;
    height: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-2000px);
    transition: 1s all;
}

.about.visible {
    transform: translateX(0);
}


.about .left {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.about .left img {
    width: 350px;
    border-radius: 35px;
    border: 15px solid white;
    transform: rotateY(180deg);
    border: 4px solid var(--c2);
    
}



.about.visible .left img {
    animation: an 1s linear;
    box-shadow: blue 0px 0px 0px 2px inset, rgb(255, 255, 255) 10px -10px 0px -3px, rgb(31, 193, 27) 10px -10px, rgb(255, 255, 255) 20px -20px 0px -3px, rgb(255, 217, 19) 20px -20px, rgb(255, 255, 255) 30px -30px 0px -3px, rgb(255, 156, 85) 30px -30px, rgb(255, 255, 255) 40px -40px 0px -3px, rgb(255, 85, 85) 40px -40px;
    
}

@keyframes an {
    0%, 20%, 40%, 60%, 80% {
        box-shadow: none;
    }
    100% {
        box-shadow: blue 0px 0px 0px 2px inset, rgb(255, 255, 255) 10px -10px 0px -3px, rgb(31, 193, 27) 10px -10px, rgb(255, 255, 255) 20px -20px 0px -3px, rgb(255, 217, 19) 20px -20px, rgb(255, 255, 255) 30px -30px 0px -3px, rgb(255, 156, 85) 30px -30px, rgb(255, 255, 255) 40px -40px 0px -3px, rgb(255, 85, 85) 40px -40px;
    
    }
}


.about .right {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 25px;
}

.about .right span {

    font-size: 15px;
    width: 80%;
    font-weight: bolder;

}



.tokenomics {
    width: 100%;
    min-height: 80vh;
    height: fit-content;
    margin-top: 100px;
    opacity: 0;
    
}

.tokenomics.visible {
    opacity: 1;
}

.tokenomics .title3 {
    width: 100%;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tokenomics .title3 h1 {
    font-size: 40px;
}


.tokenomics .cont {
    width: 100%;
    height: 70vh;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
}

.tokenomics .cont .card {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 25px;
}

.tokenomics .cont .card  img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid white;
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
    opacity: 0;
}


.tokenomics .cont .card  img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 10px solid white;
    box-shadow: rgba(240, 46, 170, 0.4) -5px 5px, rgba(240, 46, 170, 0.3) -10px 10px, rgba(240, 46, 170, 0.2) -15px 15px, rgba(240, 46, 170, 0.1) -20px 20px, rgba(240, 46, 170, 0.05) -25px 25px;
    
}

.tokenomics.visible .cont .card  img {
    animation: an2 1s linear;
    opacity: 1;
}

@keyframes an2 {
    0% {
        transform: rotateZ(0);
    }

    20%,40%,60% {
        opacity: 1;
    }

    80%,90% {
        transform: rotateZ(360deg);
        opacity: 1;
    }

    100% {
        transform: scale(1.2) rotateZ(360deg);
    }

}



.tokenomics .cont .card h1 {
    font-size: 25px;
    font-weight: bolder;

}



.tokenomics .cont .card  p {
    font-weight: bold;
    font-size: 15px;
}



.memes {
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    transform: scale(.2);
}

.memes.visible {
    transform: scale(1);
}

.memes .title {
    width: 100%;
    height: 10vh;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.memes .title h1 {
    font-size: 40px;
}
.memes .container {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
}


.memes .container img {
    width: 350px;
    border-radius: 35px;
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}


@media only screen and (max-width: 500px) {

    .about .left img {
        width: 200px;
    }

    .about .right span {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .title h1 {
        font-size: 30px !important; 
    }

    .title2 h1 {
        font-size: 30px !important;
    }

    .title3 h1 {
        font-size: 30px !important;
    }
}

@media only screen and (max-width: 705px) {
    header  {
       
        display: none;
    }

    /* header {flex-wrap: wrap;} */
}

@media only screen and (max-width: 958px) {

    .socials .ca h1 {
        font-size: 15px;
        word-break: break-all;
        padding: 0 25px;
    }

    .about {
        flex-direction: column;
        row-gap: 45px;
        /* padding-top: 100px; */
        /* padding-bottom: 150px; */
    }

    .about .right span {
        width: 95%;
    }

    .about .left {
        width: 100%;
    }

    .about .right {
        width: 100%;

    }

    .about .left {
        justify-content: center;
    }

    .tokenomics .cont {
        height: fit-content;
        flex-direction: column;
        row-gap: 45px;
    }

    


}