@charset "UTF-8";
/* CSS Document */


.box.hypebox {
  background: #0313a7;
}

.hype {
  position: absolute;
  color: #55ffff;
  left: 0;
  right: 0;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-family: serif;
  font-size: 32px;
  cursor: pointer;
}
.hype::after {
  position: absolute;
  bottom: -95px;
  background: #000;
  width: 200px;
  content: 'Loading Please Wait';
  margin: 0 0 0 -165px;
  opacity: 0;
  color: #ff6868;
  font-size: 54px;
  text-align: center;
  line-height: 1.1em;
  padding: 20px;
}

.hype:hover {
  text-decoration: underline;
  color: #0063dc;
}

.hype:active:after {
  opacity: 1;
}