/* Animate2 Example
   Source code file: styles.css
   Move a square along a circle
   within the container      */

#container {
    width: 400px;
    height: 400px;
    position: relative;
    background: yellow;
}
  
#square {
    width: 50px;
    height: 50px;
    left: 275px;
    top: 175px;
    position: absolute;
    background-color: red;
}