function makeArt() {
more;
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", () => chance.pickone(colors));
let node = svg
.selectAll("g")
.data([0, 1, 2])
.join("circle")
.attr("fill", () => chance.pickone(colors))
.attr("r", () => chance.integer({ min: 10, max: 100 }))
.attr(
"transform",
(d, i) => `translate(${width / 2},${height / 2.8 + i * 100})`
);
return svg.node();
}