/*==================================*/
/* Add experimental test code here  */
/*==================================*/

/*==================================*/
/* Changing Background Color*/
.changing-background-color {
  animation: rotate-bg-color 10s infinite !important;
}

@keyframes rotate-bg-color {
  0% {
    background-color: rgb(255, 255, 255);
  }
  50% {
    background-color: hsl(192, 48%, 85%);
  }
 100% {
    background-color: rgb(255, 255, 255);
  }    
}
/*==================================*/