* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

.game {
    width: 100%;
    height: 500px;
    border-bottom: 15px solid #58f94a;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#87CEEB, #eeec68);

}

.vilao {
    position: absolute;
    bottom: 0;
    width: 110px;
    animation: vilao-animacao 0.7s infinite linear;
}

.personagem {
    width: 150px;
    position: absolute;
    bottom: 0;

}

.jump {
    animation: jump 500ms ease-out;
}

.nuvem {
    width: 600px;

    position: absolute;
    animation: nuvem 10s infinite linear;
}

@keyframes vilao-animacao {
    from {
        right: -70%;
    }

    to {
        right: 100%;
    }
}

@keyframes jump {
    0% {
        bottom: 0;
    }

    40% {
        bottom: 180px;
    }

    50% {
        bottom: 180px;
    }

    60% {
        bottom: 180px;
    }

    100% {
        bottom: 0S
    }

}

@keyframes nuvem {
    from {
        right: -70px;

    }

    to {
        right: 100%;
    }
}