Clicker Game!
Score: 0
body {
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #f0f0f0;
}
#game-container {
text-align: center;
padding: 20px;
border: 1px solid #ccc;
background-color: #fff;
border-radius: 8px;
}
#click-button {
padding: 10px 20px;
font-size: 1.2em;
cursor: pointer;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}
let score = 0;
const scoreDisplay = document.getElementById('score');
const clickButton = document.getElementById('click-button');
clickButton.addEventListener('click', () => {
score++;
scoreDisplay.textContent = score;
});