makeBar = (penguin) => {
const length = penguin.culmen_length_mm / (penguin.culmen_length_mm + penguin.culmen_depth_mm);
const depth = penguin.culmen_depth_mm / (penguin.culmen_length_mm + penguin.culmen_depth_mm);
return htl.html`<svg width=100 height=13>
<rect x=0 y=0 height=13 width=${length * 100} fill="steelblue"></rect>
<rect x=${length * 100} y=0 height=13 width=${depth * 100} fill="orange"></rect>
</svg>`
}