body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #050210;
  }
  
  .animation {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 300px;
    background: linear-gradient( #fb5dad,#fb5dad,#fb5dad);
    animation: animate 1s linear infinite;
  }
  
  @keyframes animate {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .animation span {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 300px;
    background: linear-gradient(#b97aff,#55fb9f, #fb5dad);
  }
  
  .animation span:nth-child(1) {
    filter: blur(45px);
  }
  
  .animation span:nth-child(2) {
    filter: blur(45px);
  }
  
  .animation::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgb(14,6,36);
    border-radius: 50%;
  }
  
  .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .pulse {
    background:rgb(18,10,44);
    height: 280px;
    width: 280px;
    border: 30px solid  rgb(14,6,36) ;
    border-radius: 180px;
    animation: pulse 1s ease-out infinite;
  }
  
  @-moz-keyframes pulse {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.1, 1.1);
      opacity: 0;
    }
  }
  @-webkit-keyframes pulse {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.1, 1.1);
      opacity: 0;
    }
  }
  @-o-keyframes pulse {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.1, 1.1);
      opacity: 0;
    }
  }
  @keyframes pulse {
    0% {
      transform: scale(0.1, 0.1);
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      transform: scale(1.1, 1.1);
      opacity: 0;
    }
  }  