const createContainer = () => {
const container = document.createElement('div');
container.style.cssText = `
position: fixed;
width: 100vw;
height: 100vw;
background: rgba(119, 136, 153,0.5);
z-index: 1;
`;
return container;
}
createContainer()
document.body.appendChild(container);