.surya-pg-1 .content h2{
     color:#14532D;
     font-size:2rem;
     font-weight:700;
     text-align:center;
     width: 100px;
     height: 100px;
     background-color: #3498db;
     animation: moveRight 2s linear infinite;
}

@keyframes moveRight {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(200px);
  }
  100% {
    transform: translateX(0);
  }
}
}