@charset "utf-8";
/* CSS Document */
 /* Loading Spinner Custom CSS */
  
  body {
  margin: 0;
  padding: 0;
}
.center {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%)
}
.center span {
  color:white;
  font-family:sans-serif;
  animation:animate 7s ease infinite alternate;
}
.center span:nth-child(1) {
  animation-delay:1s;
}
.center span:nth-child(2) {
  animation-delay:2s;
}
.center span:nth-child(3) {
  animation-delay:3s;
}
.center span:nth-child(4) {
  animation-delay:4s;
}
.center span:nth-child(5) {
  animation-delay:5s;
}
.center span:nth-child(6) {
  animation-delay:6s;
}
.center span:nth-child(7) {
  animation-delay:7s;
}
@keyframes animate {
  from{font-size:1em}
  to{font-size:4em}
}
