createBox = () => {
let randomX = Math.floor(Math.random() * width);
let randomY = Math.floor(Math.random() * 300);
let randomHeight = Math.floor(Math.random() * 100) + 10;
let randomWidth = Math.floor(Math.random()* 100) + 10;
let randomBackground = opencolorsarray[Math.floor(Math.random() * opencolorsarray.length)].color;
return html`<div
style="
position:absolute;
top:${randomY}px;
left:${randomX}px;
height:${randomHeight}px;
width:${randomWidth}px;
background-color: ${randomBackground}
"
class="box"
></div>
`
}