body,
html {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: rgb(63, 63, 63);
}

#game-container {
  height: 1000px;
  width: 1000px;
  background-color: green;
}

#timer-bar {
  height: 10px;
  width: 100%;
  background-color: lime;
  /* transition: width 1s linear; */
}

#target {
  height: 100px;
  width: 100px;
  border-radius: 200px;
  background-color: red;
  position: relative;
  left: 45%;
  top: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#lives-container {
  display: flex;
  gap: 10px;
}
