body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
  }
  
  .loading-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .spinner5 {
    display: flex;
    justify-content: space-around;
    width: 50px;
    margin-bottom: 10px;
  }
  
  .spinner5 div {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    animation: bounce 1.2s infinite ease-in-out;
  }
  
  .spinner5 div:nth-child(2) {
    animation-delay: -0.4s;
  }
  
  .spinner5 div:nth-child(3) {
    animation-delay: -0.2s;
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }
  
  .loading-text {
    font-size: 1.5em;
  }
  