function drawMap(context) {
const borderColor = "#ccc";
context.save();
const path = d3.geoPath(project, context).pointRadius(1.5);
context.fillStyle = "#fefefe";
context.fillRect(0, 0, width, height);
context.strokeStyle = borderColor;
context.strokeRect(0, 0, width, height);
context.beginPath();
path(countries);
context.strokeStyle = borderColor;
context.stroke();
context.restore();
}