.container1 {
    position: fixed;
    bottom: 175px;
    right: 0.5px;
    z-index: 1;
    cursor: pointer; /* Make sure it's clickable */
    border-radius: 50%;
    height: 50px;
    width: 50px;
    background-color: white;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    animation: rotate_3922 1.2s linear infinite;
  }
  
  .container1 span {
    position: absolute;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    background-color: #9b59b6;
    background-image: linear-gradient(#9b59b6, #84cdfa, #5ad1cd);
  }
  
  .container1 span:nth-of-type(1) {
    filter: blur(5px);
  }
  
  .container1 span:nth-of-type(2) {
    filter: blur(10px);
  }
  
  .container1 span:nth-of-type(3) {
    filter: blur(5px);
  }
  
  .container1 span:nth-of-type(4) {
    filter: blur(10px);
  }
  
  .container1::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: white;
    border: solid 5px white;
    border-radius: 50%;
  }
  
  @keyframes rotate_3922 {
    from {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }
  