*{
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-family: 'Press Start 2P', cursive;
}
.game{
    width: 500px;
    height: 200px;
    border: 1px solid black;
    margin: auto;
    background-image: url("/img/background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
#character{
    width: 37px;
    height: 50px;
    /*background-color: red;*/
    position:relative;
    top: 150px;
}
.dino{
    padding-top: 8px;
    width: 100%;
}
.animatech{
    animation: jump 0.3s linear;
}
@keyframes jump{
    0%{top: 150px;}
    20%{top: 100px;}
    50%{top: 100px;}
    70%{top: 100px;}
    100%{top: 150px;}
}

#block{
    background-color: transparent;
    width: 26px;
    height: 30px;
    position: relative;
    top: 120px;
    left: 500px;
}
.cactus{
    width: 60%;
}
.animateb{
    animation: block 1s infinite linear;
}
@keyframes block{
    0%{left: 500px}
    100%{left: -20px}
}
p,h1{
    text-align: center;
}