<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style>
.box1 {
width: 100px;
height: 100px;
background-color: #81ff9d;
position: absolute;
z-index: 2;
left: 0;
right: 0;
margin: 0 auto;
margin-top: 150px;
}
.box2 {
width: 200px;
height: 200px;
background-color: #bfaeff;
position: absolute;
z-index: 1;
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
margin-top: 100px;
}
body, html {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>
<body onmousemove="mousemove(event)" onmouseenter="enter(event)">
<div class="box1">
1
</div>
<div class="box2">
2
</div>
</body