body {
  height: 100%;
  margin: 0;
  background-color: #000;
  color: #fff;
  font-family: cursive;
  -webkit-user-select: none;
  user-select: none;
}

/* Canvas */
#c {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s;
}

#l, #m, #p, #d {
  position: absolute;
  z-index: 9;
}

#m {
  font-size: 20px;
}

#d span {
  font-size: 16px;
}

/* Logo */
#l {
  top: 50%;
  width: 100%;
  margin-top: -140px;
  text-align: center;
  font-size: 80px;
}

#l span {
  font-size: 30px;
  vertical-align: middle;
}

/* Status Message */
#m {
  bottom: 10px;
  left: 20px;
  transition: opacity 2s;
}

/* Progress Bar */
#p {
  bottom: 0;
  left: 0;
  background-color: #149be8;
  height: 4px;
  transition: opacity 2s;
}

/* Score */

#d {
  top: 0;
  right: 10px;
  font-size: 25px;
  text-align: right;
}
