squares = LEEviz.selectAll("rect")
.data(largedogbottom)
.join("rect")
.attr("width", d => d.footprint * 500)
.attr("height", d => d.footprint * 500)
.attr("x", 5)
.attr("y", d => 750 - (d.footprint*500))
.attr("style", d => {
if (d.title == "HAMSTER") {return "fill:#231f20;";}
else if (d.title == "CAT") {return "fill:#f7991d;";}
else if (d.title == "VOLKSWAGEN GOLF") {return "fill:#a71949;";}
else if (d.title == "TOYOTA LAND CRUISER") {return "fill:#cc1f5e;";}
else if (d.title == "MEDIUM-SIZED DOG") {return "fill:#c29657;";}
else if (d.title == "LARGE DOG") {return "fill:#a5620b;";}
else {return "fill:yellow;";}
});