.coming-soon-container {
    text-align: center;
  }
  
  .animation h1 {
    font-size: 3em;
    color: rgb(71, 26, 196);
    animation: rotate 3s infinite linear;
    font-weight: 800;
  }
  @keyframes moveUp {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes colorChange {
    0% {
      color: #333;
    }
    50% {
      color: #ff6600;
    }
    100% {
      color: #333;
    }
  }
  
  
  
 .services-area
 {
    height: 100%;
 }