﻿/*.moving-circle-1 {
    width: 100px;*/ /* Circle size */
    /*height: 100px;
    background-color: #3498db;*/ /* Circle color */
    /*border-radius: 50%;*/ /* Makes the div circular */
    /* Animation */
    /*animation: moving-circle-animation 5s linear infinite;*/ /* Animate the circle moving right for 5 seconds */
/*}


@keyframes moving-circle-animation {
    0% {
        transform: translateX(0);*/ /* Starting position */
    /*}

    100% {
        transform: translateX(calc(100vw - 100px));*/ /* Ending position, 100vw is the full width of the viewport, and 100px is the circle's width */
    /*}
}*/
