projection = {
let extent = [[-40, -150], [chartWidth, height]];
if (chartWidth < 400) {
extent = [[-40, 0], [chartWidth, 250]];
} else if (chartWidth < 750) {
extent = [[-60, -250], [chartWidth, height]];
}
return d3.geoNaturalEarth1().fitExtent(extent, land);
}