Headshot Count

0
/* styles.css */ body { display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #222; font-family: Arial, sans-serif; } .panel { background-color: #333; padding: 30px; border-radius: 10px; color: #fff; text-align: center; box-shadow: 0 0 20px rgba(0,0,0,0.5); } h1 { margin-bottom: 20px; } .count { font-size: 48px; margin-bottom: 20px; } button { padding: 10px 20px; font-size: 16px; border: none; border-radius: 5px; background-color: #4CAF50; color: white; cursor: pointer; } button:hover { background-color: #45a049; } // script.js let headshotCount = 0; function increaseHeadshot() { headshotCount++; document.getElementById('headshotCount').innerText = headshotCount; }