* {
    margin: 0;
    padding: 0;
}

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

.logo {
    position: absolute;
    top: -43px;
    left: -43px;
    animation: slide-in-left 0.8s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0.3s;
}

.text {
    position: absolute;
    top: 426px;
    left: 74px;
    z-index: 5;
    animation: slide-in-right 0.8s 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: 248px;
    left: -113px;
    z-index: 3;
    animation: scale-in-tl 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 1s;
}

.tokenGreen {
    position: absolute;
    top: 580px;
    left: -34px;
    z-index: 2;
    animation: scale-in-tl 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;
}

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

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

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

/*.logo-----------------------*/

@keyframes slide-in-left {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
        opacity: 0;
    }

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

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

@keyframes slide-in-right {
    0% {
        -webkit-transform: translateX(1000px);
        transform: translateX(1000px);
        opacity: 0;
    }

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