 .color-cycle {

    /* change duration below (4s) to whatever fixed time you want */
    animation: colorChange 5s linear infinite;
    /* better for readability on dark backgrounds */
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }
     
  @keyframes colorChange {
    0%   { color: #f5a12d; } /* red */
   
   50%   { color: #c3d103; } /* red */
   100%   { color:  #f5a12d;  } /* red */
  }
.Back_groundimage{
    background-image: url("https://m.media-amazon.com/images/I/71DSo1te5sL.jpg");
    background-size: cover;
}



