
@import url('https://fonts.googleapis.com/css?family=Baloo+Bhaina');

.tito {
  margin-top: 10%;
  line-height: 50px;
  font-size: 50px;
  font-family: 'Baloo Bhaina', cursive;
  text-align: center;
  background: linear-gradient(
    to left, 
    #A6CE37, #ECE71C, #0FC6E6, #F95D44, #816271, #9F1958, #081B6A, #59D7EE);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 800px;
  background-position: center 0%;
  animation: background-slide 25s infinite linear;
}

@keyframes background-slide {
  100% {
    background-position: -8160px;
  }
}