1.) Change the color of this text:
d3.select(".text1").style("fill","red")
2.) Change the size of this text:
d3.select(".text2").style("font-size","5px")
3.) Build a circle w/ center here: +
d3.select("body svg").append("circle").classed("circle1",true).attr({cx:275, cy:145, r:20})
4.) Make a rectangle around this text: |-------|
d3.select("body svg").append("rect").classed("rect1",true).attr({x:287, y:185, height:20, width:60})
5.) Select the element classed "rect1" and change the "fill" style to "red".
d3.select(".rect1").style("fill","red")
6.) Change the circle's radius to 50.
d3.select(".circle1").attr("r", 50)