```html
box {
width: 200px;
height: 200px;
backgroundcolor: lightgray;
}
document.addEventListener("DOMContentLoaded", function() {
var box = document.getElementById("box");
document.addEventListener("mousemove", function(e) {
var mouseX = e.clientX;
var mouseY = e.clientY;
box.style.left = mouseX "px";
box.style.top = mouseY "px";
});
});