body {
    background-color: #ffffff;
    height: 100vh;
    width: 100vw;
    margin: 0px;
  }

  .main-content {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease-out;
  }

  img {
    width: 75px;
    height: 75px;
    position: absolute;
  }

  .loader {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(#e3c065, #395ba9, #815ea8);
    animation: animate 1.2s linear infinite;
  }

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

  .loader span {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 60%;
    background: linear-gradient(#e3c065, #395ba9, #815ea8);
  }

  .loader span:nth-child(1) {
    filter: blur(1px);
  }

  .loader span:nth-child(2) {
    filter: blur(6px);
  }

  .loader span:nth-child(3) {
    filter: blur(12px);
  }

  .loader span:nth-child(4) {
    filter: blur(24px);
  }

  .loader:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background: #e6e6e6;
    border-radius: 50%;
  }