.title{
    font-size: 20pt;
    animation-duration: 20s;
    animation-name: gaming;
    animation-iteration-count: infinite;
}

@keyframes gaming {
    from {
      color: rgb(146, 218, 174);
      }
    33% {
      color:  rgb(86, 212, 134);
    }
    66% {
        color:  rgb(38, 199, 99);
      }
    to {
        color: rgb(146, 218, 202)
      }
  }

  .clock{
   text-decoration: none;
  }