body {
    margin: 0;
    overflow: hidden;
}

#dino {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px; /* Adjust size as needed */
    height: auto;
    transform-origin: bottom left;
    animation: walk 1s infinite alternate; /* Adjust animation duration as needed */
}

@keyframes walk {
    0% {
        transform: translateY(0) scaleX(-1);
    }
    100% {
        transform: translateY(-50px) scaleX(-1);
    }
}

/* Add any other styles for your page here */
