body{
    background-color: red;
    background-size: 100px 100px;
    background-image: url("../Main_Infrastructure/img/lava_chicken.png");
    animation: mymove 5s infinite;
    align-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
}

@keyframes mymove {
 50%{background-position: center;}
}



