body {
  background-color: #101010;
  overflow: hidden;
}

h1 {
  position: absolute;
  font-family: 'Open Sans';
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  left: 49%;
  top: 58%;
  margin-left: -20px;
  color: white;
}

.body {
  position: absolute;
  top: 50%;
  margin-left: -50px;
  left: 50%;
  animation: speeder .4s linear infinite;
}

div {
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
  font: normal 45px/1em Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #EFEFEF;
}
div:after {
  content: "";
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -moz-animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
  -webkit-animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
  animation: wormsPong cubic-bezier(0.77, 0, 0.175, 1) 0.8s infinite;
  background-color: #2E97AC;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 4px;
}

@-moz-keyframes wormsPong {
  25% {
    width: 100%;
  }
  50% {
    width: 0;
    left: auto;
    right: 0;
  }
  75% {
    width: 100%;
  }
  100% {
    width: 0;
    right: auto;
    left: 0;
  }
}
@-webkit-keyframes wormsPong {
  25% {
    width: 100%;
  }
  50% {
    width: 0;
    left: auto;
    right: 0;
  }
  75% {
    width: 100%;
  }
  100% {
    width: 0;
    right: auto;
    left: 0;
  }
}
@keyframes wormsPong {
  25% {
    width: 100%;
  }
  50% {
    width: 0;
    left: auto;
    right: 0;
  }
  75% {
    width: 100%;
  }
  100% {
    width: 0;
    right: auto;
    left: 0;
  }
}
html, body {
  height: 100%;
}

div {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


p {
  font-size: 12px;
  text-transform: uppercase;
  font-family: sans-serif;
  text-align: center;
  position: fixed;
  color: white;
	bottom: 10px;
  left: 40%;
}

a {
  text-decoration: none;
  color: #7289DA;
  transition: 0.25s
}

a:hover {
  color: #9ccaff;
}
