body {
    margin: 100;
    overflow: hidden; /* Prevent scrollbars */
}

#movingImage {
    position: absolute;
    width: 700px; /* Adjust size as needed */
    height: auto;
    animation: moveAround 1s linear infinite; /* Animation properties */
}

@keyframes moveAround {
    0% {
        top: 0;
        left: 0;
    }
    25% {
        top: 0;
        left: calc(100% - 700px); /* Move to the right */
    }
    50% {
        top: calc(100% - 420px); /* Move down */
        left: calc(100% - 700px); /* Move to the right */
    }
    75% {
        top: calc(100% - 420px); /* Move down */
        left: 0; /* Move to the left */
    }
    100% {
        top: 0; /* Move back to the top */
        left: 0; /* Move back to the left */
    }
}
