.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000018;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    background-image: linear-gradient(#7c4dff 35%, rgb(0, 60, 255));
    width: 150px;
    height: 150px;
    animation: spinning82341 1.7s linear infinite;
    text-align: center;
    border-radius: 80px;
    filter: blur(1px);
    box-shadow: 0px -5px 20px 0px rgb(186, 66, 255), 0px 5px 20px 0px #448bff;
  }
  
  .spinner1 {
    background-color: #000018;
    width: 150px;
    height: 150px;
    border-radius: 80px;
    filter: blur(10px);
  }
  
  @keyframes spinning82341 {
    to {
      transform: rotate(360deg);
    }
  }

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
