* {
    margin: 0;
    padding: 0;
}

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

.borde {
    position: absolute;
    top: 182px;
    left: -52px;
    z-index: 3;
}

.tokens {
    position: absolute;
    top: -155px;
    left: 654px;
    z-index: 3;
    animation: scale-in-tl 1.9s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

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

.white_square {
    background-color: #ffffff;
    width: 1337px;
    height: 24px;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: 4;
}

.texto {
    font-family: arial;
    font-size: 34px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    position: absolute;
    top: 254px;
    left: 155px;
    letter-spacing: -1px;
    z-index: 5;
    animation: tracking-in-expand-fwd 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

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

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

@keyframes tracking-in-expand-fwd {
    0% {
        letter-spacing: 1em;
        -webkit-transform: translateZ(10px);
        transform: translateZ(10px);
        opacity: 0;
    }

    80% {
        opacity: 0.6;
    }

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