html, body {
  background-color: #0b0c1b;
  height: 100vh;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100vw;
}

#canvas {
  cursor: none;
  height: 100vh;
  width: 100vw;
}

.counter, .lives, h1 {
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  margin: 0;
}

.counter, .lives {
  backdrop-filter: blur(3px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: white;
  display: inline-block;
  height: 20px;
  line-height: 20px;
  margin: 20px 15px;
  padding: 10px 15px;
  position: absolute;
  text-align: center;
  text-decoration: none;
  z-index: 2;
  pointer-events: none;
}

.counter {
  bottom: 0;
  left: 0;
}

.lives {
  bottom: 45px;
  left: 0;
}
