:root {
    --c1: #2E3035;
    --c2: #A60EE5;
    --stroke-c: #FF42F2;
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #FFFF;
    transition: .5s all;
    font-family: 'Aovel Sans', sans-serif;
                                                
}


body {
    min-height: 100vh;
    height: fit-content;
    background: var(--c1);
    /* background: linear-gradient(to bottom,  var(--c1) 5%, var(--c2)); */
    
}

header {
    width: 100%;
    height: 25vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}



header img {
    width: 125px;
    height: 125px;
    cursor: pointer;
}

header img:nth-child(1):hover {
    transform: rotateZ(12deg) scale(1.3);
}

header img:nth-child(2):hover {
    transform: rotateZ(-20deg) scale(1.3);
}

main {
    width: 100%;
    height: 75vh;
    position: relative;

    display: flex;
    justify-content: center;

    row-gap: 25px;

}

.ca {
    position: fixed;
    background: black;
    width: 100%;
    height: 10vh;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}


img.y {
    position: absolute;
    width: 350px;
    transform: rotateY(180deg);
    left: -50px;
    bottom: -200px;
    display: none;
}


main img.main2 {
    position: absolute;
    width: 350px;
    margin-top: 150px;
}

main img.building {
    position: absolute;
    left: -100px;
    width: 600px;
    bottom: 0;
    transform: rotateY(180deg);
}

main img.text {
    width: 250px;
    height: 150px;
    animation: scaleUpDown 4s linear infinite;

}

main img.main {
    position: absolute;
    right: 0;
    bottom: -40px;
    transform: rotateY(180deg);
    /* animation: rotate 2s linear infinite; */
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes scaleUpDown {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}


header .center {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 25px;
}

header .center img {
    background: var(--c2);
    border: 4px solid #F40101;
    padding: 15px;
    border-radius: 50%;
}

.tokenomics {
    width: 100%;
    min-height: 100vh;
    height: fit-content;
    margin-top: -188px;
}


@media only screen and (max-width: 1569px) {

    
    main img.main {
        display: none;
    }


}

@media only screen and (max-width: 816px) {
    img.red {
        width: 500px;
    }
}

@media only screen and (max-width: 515px) {
    img.red {
        width: 450px;
    }
}

@media only screen and (max-width: 450px) {
    .ca h1 {
        padding: 0 20px;
    }
}

@media only screen and (max-width: 483px) {

    img.red {
        width: 450px;
    }

}

@media only screen and (max-width: 870px) {

    header img {
        width: 90px;
        height: 90px;
    }

    .ca h1 {
        font-size: 20px;
        word-break: break-all;
    }

}


.tokeno {
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 25px;
    position: relative;
}

.tokeno img.red {
    position: absolute;
    z-index: -1;
    
}

.tokeno h1 {
    background: black;
    padding: 10px 20px;
    font-size: 45px;
    border: 2px solid red;
}



@media only screen and (max-width: 530px) {

    .tokenomics {
        margin-top: 0px !important;
    }

    img.building {
        width: 100px !important;
        margin-left: 0;
    }

    header img {
        width: 60px;
        height: 60px;
    }

}