Plot.plot({
margin: 30,
inset: 10,
grid: true,
style: {
padding: 10,
color: "black",
background: `url(${await FileAttachment("sea-ice.jpg").url()})`,
backgroundSize: "cover"
},
marks: [
Plot.frame(),
Plot.dot(penguins, {x: "culmen_length_mm", y: "culmen_depth_mm", fill: "white", stroke: "black"})
]
})