*{
    padding: 0;
    margin: 0;
}
#game{
    width: 400px;
    height: 520px;
    border: 5px solid white;
    margin: auto;
    overflow: hidden;
}
#block{
    width: 50px;
    height: 520px;
    background: url(yagoda.png);
    position: relative;
    left: 400px;
    animation: block 2s infinite linear;
}
@keyframes block{
    0%{left:400px}
    100%{left:-50px}
}
#hole{
    width: 50px;
    height: 150px;
    background: url(torta.png);
    position: relative;
    left: 400px;
    top: -500px;
    animation: block 2s infinite linear;
}
#character{
    width: 40px;
    height: 40px;
    background: url(tati.png);
    position: absolute;
    top: 100px;
}