/* =========================
   DINOSAURIO GOOGLE
========================= */
#game{
    width:100%;
    max-width:400px;
    height:200px;
    border:3px solid #333;
    margin:auto;
    position:relative;
    overflow:hidden;
    background:#f8f8f8;
}
#ground{
    width:100%;
    height:5px;
    background:black;
    position:absolute;
    bottom:0;
}
#dino{
    width:40px;
    height:40px;
    background:#198754;
    position:absolute;
    bottom:5px;
    left:40px;
    border-radius:5px;
}
#cactus{
    width:25px;
    height:50px;
    background:#dc3545;
    position:absolute;
    bottom:5px;
    right:-30px;
    border-radius:5px;
    animation:cactusMove 1.5s infinite linear;
}
@keyframes cactusMove{
    0%{
        right:-30px;
    }
    100%{
        right:100%;
    }
}
.jump{
    animation:jump 0.6s ease;
}
@keyframes jump{
    0%{
        bottom:5px;
    }
    40%{
        bottom:120px;
    }
    50%{
        bottom:120px;
    }
    100%{
        bottom:5px;
    }
}