#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!