* {
    margin: 0;
    padding: 0;
}

body {
    width: 1920px;
    height: 1080px;
}

.main-content {
    background-color: #00A5A5;
    width: 1920px;
    height: 1080px;
    position: relative;
    top: 0px;
    left: 0px;
    z-index: -4;
    overflow: hidden;
}

.main-contentV {
    background-color: #00A5A5;
    width: 452px;
    height: 1080px;
    position: absolute;
    top: 0px;
    left: 1468px;
    z-index: -2;
    overflow: hidden;
}

.main-contentH {
    background-color: #00A5A5;
    width: 1468px;
    height: 253px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    overflow: hidden;
}

.logoH {
    position: absolute;
    top: -54px;
    left: -48px;
    z-index: 3;
    animation: scale-in-tl 1.1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.rectangle {
    position: absolute;
    top: 948px;
    left: -105px;
    z-index: 6;
}

.tokenOrange {
    position: absolute;
    top: -44px;
    left: 91px;
    z-index: 3;
    animation: scale-in-tr 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 1.8s;
}

.tokenGreen {
    position: absolute;
    top: 120px;
    left: -296px;
    z-index: 2;
    animation: scale-in-tr 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 2.8s;
}

.container-tokens {
    animation: kenburns-bottom 26s ease-out both;
    animation-delay: 4.7s;
}

.tokensH {
    position: absolute;
    top: -258px;
    left: 767px;
    z-index: 3;
    animation: scale-in-tl 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0.5s;
}

.container-tokensH {
    animation: kenburns-bottomH 27.5s ease-out both;
    animation-delay: 2.8s;
}

.texto {
    font-family: arial;
    font-size: 34px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    position: absolute;
    top: 880px;
    left: 116px;
    letter-spacing: 0px;
    z-index: 5;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.textH {
    position: absolute;
    top: 73px;
    left: 409px;
    z-index: 4;
    animation: scale-in-hor-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 3s;
}

/* tokens ----------------------------------------------*/
@keyframes scale-in-tr {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }
}

/* token and logo --------------------------*/
@keyframes scale-in-tl {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }
}

/*.container-tokens-----------------------*/
@keyframes kenburns-bottom {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 84%;
        transform-origin: 50% 84%;
    }

    70% {
        -webkit-transform: scale(0.9) translateY(15px);
        transform: scale(0.9) translateY(15px);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
    }

    100% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 84%;
        transform-origin: 50% 84%;
    }
}

/*.container-tokensH -----------------------*/
@keyframes kenburns-bottomH {
    0% {
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
        -webkit-transform-origin: 50% 84%;
        transform-origin: 50% 84%;
    }

    50% {
        -webkit-transform: scale(1.1) translateX(-120px);
        transform: scale(1.1) translateX(-120px);
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
    }

    100% {
        -webkit-transform: scale(1) translateX(0);
        transform: scale(1) translateX(0);
        -webkit-transform-origin: 50% 84%;
        transform-origin: 50% 84%;
    }
}

/*.text-----------------------*/

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

/*.textH----------------------*/
@keyframes scale-in-hor-right {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
        opacity: 1;
    }

    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: 100% 100%;
        transform-origin: 100% 100%;
        opacity: 1;
    }
}