/*
 * Baseline styles
 */
body {
  /* background: #222; */
  text-align: center;
  padding: 20%;
}
h2 {
  color: #ccc;
  margin: 0;
  font-size: 1em;
  /* text-transform: uppercase; */
  /* letter-spacing: .1em; */
  width: 100%;
}
.child0 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
margin: auto;
background-color:rgba(0, 0, 0, 0.7);
z-index: 999999;
filter:alpha(opacity=70);
}
.child1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20%;
  margin: auto;
}
/*
 * Loading Dots
 * Can we use pseudo elements here instead :after?
 */
.loading span {
  display: inline-block;
  vertical-align: middle;
  width: .6em;
  height: .6em;
  margin: .10em;
  background: #007DB6;
  border-radius: .8em;
  -webkit-animation: loading 1s infinite alternate;
          animation: loading 1s infinite alternate;
}

/*
 * Dots Colors
 * Smarter targeting vs nth-of-type?
 */
.loading span:nth-of-type(2) {
  background: #008FB2;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loading span:nth-of-type(3) {
  background: #009B9E;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.loading span:nth-of-type(4) {
  background: #00A77D;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.loading span:nth-of-type(5) {
  background: #00B247;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.loading span:nth-of-type(6) {
  background: #5AB027;
  -webkit-animation-delay: 1.0s;
          animation-delay: 1.0s;
}
.loading span:nth-of-type(7) {
  background: #A0B61E;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

/*
 * Animation keyframes
 * Use transition opacity instead of keyframes?
 */
@-webkit-keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes loading {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes circle {
	0% {
		transform: rotate(0deg) translate(-5px) rotate(0deg);
	}
	100% {
		transform: rotate(360deg) translate(-5px)  rotate(-360deg);
	}
}
.letters {
  position: absolute;
  bottom: 70;
  width: 100%;
  height: 100%;
  margin: 0;
}
.__letter {
  width: 100%;
  height: 100%;  
  position: absolute;
  font-size: 4em;
  font-weight: bold;
  margin: 0;
  animation: circle 3s infinite linear;
  mix-blend-mode: screen;
}
.--blue {
  color: #008FB2;
  animation-delay: 0s;
}

.--green {
  color: #5AB027;
  animation-delay: -1s;
}

.--red {
  color:rgb(255, 168, 55);
  animation-delay: -2s;
}