const overlayDivStyles = {
backgroundColor: "red",
width: "100%",
height: "100%",
display: "flex",
justifyContent: "center",
position: "absolute",
zIndex: 2,
};
const domOverlay = document.createElement("div");
domOverlay.classList.add("map-overlay");
domOverlay.innerHTML = `<h4>No locations exist with these current filters<h3>`;
//assign my styles to the overlay Div
Object.assign(domOverlay.style, overlayDivStyles);