body{

  background: #1e1d1e;
}
.load
{
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
.loader
{
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(#00ffea, #00ff77, #ffffff);
    animation: animate 0.5s linear infinite;
}
@keyframes animate
{
  0%
  {
    transform: rotate(0deg);
  }
    100%
    {
      transform: rotate(360deg);
    }
}

.loader span
{
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(#00ffea, #00ff77, #ffffff);
}
.loader span:nth-child(1)
{
    filter: blur(5px);
}
.loader span:nth-child(2)
{
    filter: blur(10px);
}
.loader span:nth-child(3)
{
    filter: blur(25px);
}.loader span:nth-child(4)
{
    filter: blur(50px);
}
.loader:after
{
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background: #1e1d1e;
  border-radius: 50%;
}
