@charset "UTF-8";
body {
  padding: 0;
  margin: 0;
  background: black;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.le-score {
  font-family: 'Nosifer', cursive;
  position: fixed;
  width: 100%;
  text-align: center;
  top: 50px;
  color: white;
  line-height: 36px;
   user-select: none;
  pointer-events: none;
}
.le-score .score {
  font-size: 28pt;
  color: red;
  text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
  user-select: none;
  pointer-events: none;
}

.le-health {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 64px;
  user-select: none;
  pointer-events: none;
}
.le-health .health {
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/163870/1484755800real-heart-png.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 54px;
  height: 44px;
  margin-bottom: 20px;
  user-select: none;
  pointer-events: none;
}
