* {
    margin: 0;
    padding: 0;
}

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

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

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

.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: 1.8s;
}

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

.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;
}

/* 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;
    }
}

/*.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%;
    }

    50% {
        -webkit-transform: scale(0.8) translateY(15px);
        transform: scale(0.8) 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%;
    }
}


/*.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;
    }
}