html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  outline: 0;
  background: #000;
}

body {
  width: 100%;
  height: 100%;
  padding: 20px;
  margin: 0;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  background-color: transparent;
}

#maintext{
    color: white;
}

#meter {
	position: absolute;
	top: 0px;
	left: 0px;
        bottom: 0px;
        right: 0px;
	background-color: transparent;
	-webkit-transition: background-color .2s linear, border-color .2s linear;
}

#meter > span {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	background-color: #fafafa;
}

#meter::before {
	color:rgba(255,255,255,.15);
	font-size: 2em;
	text-align: center;
	position: absolute;
	line-height: 75px;
	width: 100%;
	height: 100%;
	-webkit-transition: color .2s linear;
}

#meter.active::before {
	color: rgba(255,255,255,.6);
}
