#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  .loading-spinner {
    width: 100px;
    height: 100px;
  }
  .blade-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .blade {
    position: absolute;
    width: 10px;
    height: 60px;
    background-color: #FEAA20;
    transform-origin: center 65px;
    animation: spin 2s linear infinite;
  }
  .blade-1 {
    transform: rotate(60deg);
    animation-delay: -0.33s;
    border-bottom-right-radius: 20px;
  }
  .blade-2 {
    transform: rotate(120deg);
    background-color: #446687;
    animation-delay: -0.66s;
    border-bottom-right-radius: 20px;
  }
  .blade-3 {
    transform: rotate(180deg);
    background-color: #1CA1A7;
    animation-delay: -0.99s;
    border-bottom-right-radius: 20px;
  }
  .blade-4 {
    transform: rotate(240deg);
    animation-delay: -1.32s;
    border-bottom-right-radius: 20px;
  }
  .blade-5 {
    transform: rotate(300deg);
    background-color: #446687;
    animation-delay: -1.65s;
    border-bottom-right-radius: 20px;
  }
  .blade-6 {
    transform: rotate(360deg);
    background-color: #1CA1A7;
    animation-delay: -1.98s;
    border-bottom-right-radius: 20px;
  }
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform:  rotate(360deg);
    }
  }