* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #333
}

.container {
    width: 100%;
    height: 400px;
    border: 1px solid #000;
    border-bottom: 15px solid green;
    background-color: aliceblue;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#87CEEB, #E0F6FF);
}

.bolso {
    position: absolute;
    height: 220px;
    bottom: -30px;
    left: 0px;
}

.jump {
    animation: jump 900ms ease-out;
}

.pipe {
    position: absolute;
    bottom: 0;
    width: 70px;
    animation: pipe-animation 1.2s linear infinite;
}

.titulo {
    font-size: 50px;
    text-align: center;
    font-family: Helvetica;
    font-weight: 600;
    background-image: linear-gradient(to bottom, green, green, yellow, green, black);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

.lula {
    position: absolute;
    bottom: -2px;
    height: 150px;
    animation: pipe-animation 2s linear infinite;
}

.point {
    position: absolute;
    top: 20%;
    left: 48%;
    font-size: 72px;
    font-family: Helvetica;
    font-weight: 600;
    z-index: 3;
    color: #000;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #fff;
    text-shadow: 2px 2px 2px #000;
}

.clouds {
    width: 500px;
    height: 200px;
    top: 20px;
    position: absolute;
    z-index: 0;
    animation: clouds-animation 20s linear infinite;
}

@keyframes pipe-animation {
    from {
        right: -70px;    
    }
    to{
        right: 100%
    }
}

@keyframes jump {
    0% {
        bottom: -30px;    
    }
    25% {
        bottom: 150px;
    }
    50% {
        bottom: 150px;
    }
    85% {
        bottom: 150px;
    }
    100% {
        bottom: -30px;    
    }
}

@keyframes clouds-animation {
    from {
        right: -400px;
    }
    to {
        right: 100%;
    }
}