#body {
    position: relative;
    width: 100%;
    height: 100%;
}
@keyframes move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100vw, 0); } /* Sola doğru hareket */
}

.ant {
    position: absolute;
    width: 100px; /* Resmin boyutuna göre ayarlayın */
    height: 100px; /* Resmin boyutuna göre ayarlayın */
    background-image: url('../picture/ant.png'); /* Karınca resmi */
    background-size: contain;
    background-repeat: no-repeat;
    animation: move 100s linear infinite; /* İlk başta animasyon süresi */
}
