let x, y;
let xspeed = 25;
let yspeed = 100;
let xdirection = 1;
let ydirection = 1;
let d = 50;
function setup() {
createCanvas(windowWidth, windowHeight);
background("#2C180F");
x = width/2;
y = height/2;
}
function draw() {
x = mouseX;
y = mouseY;
fill("#C7C6FF");
stroke("#C7C6FF");
ellipse (x,y,50,50);
}