.welcome-content {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.welcome-text {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    /* margin-top: 10px;
    margin-left: 45%; */
  }
  
  .dots-container {
    display: inline-block;
    position: relative;
    margin-left: 10px;
  }
  
  .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
    margin: 0 2px;
    opacity: 0;
    animation: dotsAnimation 1.5s infinite;
  }
  
  .dot:nth-child(1) {
    animation-delay: 0.2s;
  }
  
  .dot:nth-child(2) {
    animation-delay: 0.4s;
  }
  
  .dot:nth-child(3) {
    animation-delay: 0.6s;
  }
  
  .dot:nth-child(4) {
    animation-delay: 0.8s;
  }
  
  .dot:nth-child(5) {
    animation-delay: 1s;
  }
  
  .dot:nth-child(6) {
    animation-delay: 1.2s;
  }
  
  @keyframes dotsAnimation {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  