function coloredDiv(color) {
let w = 40
let h = 40
const container = document.createElement('div');
container.style.position = "relative";
container.style.width = w + 'px';
container.style.height = h + 'px';
container.style.backgroundColor = color;
return container
}