function makeArt() {
const height = width * 0.8;
let svg = d3.create("svg").attr("width", width).attr("height", height);
let bg = svg
.append("rect")
.classed("bg", true)
.attr("width", width)
.attr("height", height)
.attr("fill", () => colors[0]);
let leaf = svg
.selectAll("g")
.data(data)
.join("circle")
.attr("r", (d) => d.r)
.attr("fill", (d) => d.fill)
.attr("transform", (d, i) => `translate(${d.x},${d.y})`);
return svg.node();
}