* {
    margin: 0;
    padding: 0;
}

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

.logo {
    position: absolute;
    top: -54px;
    left: -48px;
    z-index: 3;
}

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

.text {
    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: 2s;
}

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



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

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