* {
  //overflow: hidden;
  margin: 0;
}
body {
  background: #fff;
}

@-webkit-keyframes identifier {
  from {
    transform: scale(0);
    opacity:0;
  }
  to {
    transform: scale(20);
    opacity:1;
  }
}
@-o-keyframes identifier {
  from {
    transform: scale(0);
    opacity:0;
  }
  to {
    transform: scale(20);
    opacity:1;
  }
}
@-moz-keyframes identifier {
  from {
    transform: scale(0);
    opacity:0;
  }
  to {
    transform: scale(20);
    opacity:1;
  }
}
@keyframes identifier {
  from {
    transform: scale(0);
    opacity:0;
  }
  to {
    transform: scale(20);
    opacity:1;
  }
}

@keyframes circle {
	from {
		transform: scale(0);
    opacity:0;
	}
	to {
		transform: scale(20);
    opacity:1;
	}
}
.circle {
  opacity:0;
  margin: 0 auto;
  width: 200px;
  height: 200px;
  border: 20px solid #ccc;
  border-radius: 50%;
  position: absolute;
  top: 5%;
  left: 40%;
  z-index: -1;
}
.one {
  -webkit-animation: circle 6s infinite 8s linear;
  -o-animation: circle 6s infinite 8s linear;
  animation: circle 6s infinite 8s linear;
}
.two {
  -webkit-animation: circle 6s infinite 7s linear;
  -o-animation: circle 6s infinite 7s linear;
  animation: circle 6s infinite 7s linear;
}
.three {
  -webkit-animation: circle 6s infinite 6s linear;
  -o-animation: circle 6s infinite 6s linear;
  animation: circle 6s infinite 6s linear;
}
.c4 {
  -webkit-animation: circle 6s infinite 5s linear;
  -o-animation: circle 6s infinite 5s linear;
  animation: circle 6s infinite 5s linear;
}
.c5 {
  -webkit-animation: circle 6s infinite 4s linear;
  -o-animation: circle 6s infinite 4s linear;
  animation: circle 6s infinite 4s linear;
}
.c6 {
  -webkit-animation: circle 6s infinite 3s linear;
  -o-animation: circle 6s infinite 3s linear;
  animation: circle 6s infinite 3s linear;
}
.c7 {
  -webkit-animation: circle 6s infinite 2s linear;
  -o-animation: circle 6s infinite 2s linear;
  animation: circle 6s infinite 2s linear;
}
.c8 {
  -webkit-animation: circle 6s infinite 1s linear;
  -o-animation: circle 6s infinite 1s linear;
  animation: circle 6s infinite 1s linear;
}
.c9 {
  -webkit-animation: circle 6s infinite 0s linear;
  -o-animation: circle 6s infinite 0s linear;
  animation: circle 6s infinite 0s linear;
}