/* green background light animated  */
.green-box {
  width: 250px;
  height: 250px;
  position: absolute;
  border-radius: 50%;
}
.green-box::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  top: 15px;
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  transform: scale(1.9) translateZ(0);
  filter: blur(75px);
  background: linear-gradient(to left, #007a10, #01660e, #015e12, #046f1d, #047123, #244d33, #1d7528, #033119, #01331e, #102e14, #052d0a, #000501);
  background-size: 200% 200%;
  animation: animateGlow 1.25s linear infinite;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/*# sourceMappingURL=green-box.css.map */
