@font-face {
    font-family: 'opun_mairegular';
    src: url('./fonts/opun_mai_regular-webfont.eot');
    src: url('./fonts/opun_mai_regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('./fonts/opun_mai_regular-webfont.woff2') format('woff2'),
        url('./fonts/opun_mai_regular-webfont.woff') format('woff'),
        url('./fonts/opun_mai_regular-webfont.ttf') format('truetype'),
        url('./fonts/opun_mai_regular-webfont.svg#opun_mairegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}

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

.main-content {
    width: 1920px;
    height: 1080px;
    position: relative;
    background-color: #FB8E0F;
    overflow: hidden;
}

.main-content1 {
    width: 1107px;
    height: 1080px;
    position: absolute;
    background-color: #FB8E0F;
    overflow: hidden;
}

.balloons1 {
    position: absolute;
    top: -69px;
    left: 435px;
    animation: bobble1 8s infinite;
    animation-delay: 1s;
}

.balloons2 {
    position: absolute;
    top: 579px;
    left: 641px;
    z-index: 3;
    animation: bobble2 8s infinite;
}

.balloons3 {
    position: absolute;
    top: 682px;
    left: 342px;
    animation: bobble1 8s infinite;
}

.token1 {
    position: absolute;
    top: 271px;
    left: -325px;
    z-index: 0;
    animation: rotate-in-2-tl-ccw 1.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 1.5s;
}

.token2 {
    position: absolute;
    top: 547px;
    left: -166px;
    animation: rotate-in-2-tl-ccw 1s cubic-bezier(0.230, 1.000, 0.320, 1.000) both;
    animation-delay: 2.5s;
}

.logo {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 5;
}

.confetti {
    position: absolute;
    top: 67px;
    left: 23px;
    z-index: 3;
    animation: kenburns-top2 30s both;
}

.hat {
    position: absolute;
    top: 418px;
    left: 881px;
    z-index: 3;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 2s;
}

.happy-birthday {
    position: absolute;
    top: 386px;
    left: 217px;
    z-index: 2;
    animation: scale-in-hor-left 0.7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.background2 {
    position: absolute;
    top: 961px;
    left: 0px;
    z-index: 0;
}

.month {
    font-family: 'opun_mairegular';
    font-size: 82px;
    font-style: normal;
    position: absolute;
    top: 583px;
    left: 213px;
    z-index: 2;
    letter-spacing: 3px;
    animation: scale-in-ver-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation-delay: 0.7s;
}

.bottom-text {
    font-family: 'opun_mairegular';
    font-size: 31px;
    font-style: normal;
    font-weight: 700;
    max-width: 1000px;
    max-height: 125px;
    position: absolute;
    top: 1005px;
    left: 345px;
    z-index: 2;
    letter-spacing: 1px;
}

/* flotar----------------------------------------------*/
@keyframes bobble1 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-40px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* float animation----------------------------------------------*/
@keyframes bobble2 {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(50px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* confetti animation ----------------------------------------------*/

@keyframes kenburns-top2 {
    0% {

        transform: scale(1.5) translateY(-100px);
    }


    100% {
        transform: scale(1) translateY(180px);
    }
}

/* token green animation --------------------------------------*/
@keyframes rotate-in-2-tl-ccw {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        opacity: 0;
    }

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

/* token orange animation.....................--------------*/
@keyframes slide-in-blurred-br {
    0% {
        -webkit-transform: translate(1000px, 1000px) skew(80deg, 10deg);
        transform: translate(1000px, 1000px) skew(80deg, 10deg);
        -webkit-transform-origin: 0% 100%;
        transform-origin: 0% 100%;
        -webkit-filter: blur(40px);
        filter: blur(40px);
        opacity: 0;
    }

    100% {
        -webkit-transform: translate(0, 0) skew(0deg, 0deg);
        transform: translate(0, 0) skew(0deg, 0deg);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-filter: blur(0);
        filter: blur(0);
        opacity: 1;
    }
}

/* happy-birthday --------------------------------------*/
@keyframes scale-in-hor-left {
    0% {
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0% 0%;
        transform-origin: 0% 0%;
        opacity: 1;
    }

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

/* text month --------------------------------------*/
@keyframes scale-in-ver-top {
    0% {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
        -webkit-transform-origin: 100% 0%;
        transform-origin: 100% 0%;
        opacity: 1;
    }

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

/* hat --------------------------------------*/
@keyframes scale-in-center {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

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