A minor note: You can set multiple style properties by setting, or appending to, style.cssText:
mainFrame.style.cssText += `
width: ${width}px;
height: ${height}px;
text-align: center;
position: relative;
`;
Property names on style objects are also camelcased, e.g. style.textAlign, style.pointerEvents.