body {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
  }
  
  .spinner-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .spinning-text {
    font-size: 48px;
    font-weight: bold;
    animation: spin 4s linear infinite;
  }
  
  .rainbow-text {
    background: linear-gradient(to right, violet, indigo, blue, green, yellow, orange, red);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
  }
  
  @keyframes spin {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  