body {
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  overflow: hidden;
  height: 100vh;
  background-color: #111;
  position: relative;
}

#contador {
  position: fixed;
  top: 20px;
  left: 20px;
  font-size: 15px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background-color: black;
  color: white; /* ← texto branco */
  padding: 10px 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px #aaa;
  z-index: 10;
}

#imagem {
  position: absolute;
  width: auto;
  height: auto;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
}
