Shoot the box in this game and make the highest score

Shoot the Box body { margin: 0; overflow: hidden; background: #111; font-family: Arial, sans-serif; color: white; text-align: center; }
#hud {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100%;
  font-size: 22px;
  z-index: 10;
}

#game {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(#222, #050505);
  overflow: hidden;
  cursor: crosshair;
}

#box {
  position: absolute;
  width: 70px;
  height: 70px;
  background: red;
  border: 3px solid white;
  box-shadow: 0 0 20px red;
  cursor: crosshair;
  transition: left 0.15s, top 0.15s;
}

#start {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 15px 30px;
  font-size: 22px;
  border: none;
  border-radius: 10px;
  background: limegreen;
  color: white;
  cursor: pointer;
  z-index: 20;
}

#message {
  position: fixed;
  bottom: 25px;
  width: 100%;
  font-size: 18px;
}
🎯 Score: 0    ⏱️ Time: 30
START GAME
Shoot the red box!

you can’t post code in a forum post if you want to invite people to try your app, you need to host it somewhere