Remix the project to create a simple and fun drawing program. Follow these steps: In the "Mouse" sprite: 1. Make the "Mouse" sprite follow the mouse pointer. (hint: this needs to be in a forever loop.) 2. If the mouse is down and the mouse isn't in the menu area (when mouse-y is less than 140), put the pen down to draw. Otherwise, make sure the pen is up. 3. Start the program by clearing the stage of any drawing and initializing any variables ("Pen Size" to 1 and "Color" to 0). 4. In the forever loop, update the pen color and pen size. Set the pen color to the value of the "Color" variable. Set the pen size to the value of the "Pen Size" variable. 5. In the forever loop, update the color and size of the "Mouse" sprite. Set color effect to the value of the "Color" variable. Set the size % to the value of the "Pen Size" variable times 3 (this is pretty close to the size that the "Mouse" will now draw). In the "Clear" sprite: 1. Create a forever loop with an if then block to check when the mouse pointer is touching the "Clear" button and the mouse is down. When it does, the drawing on the stage should clear. In the "Color" sprite: 1. Create a forever loop to set the color effect to the value of the "Color" variable. Draw and have fun!