
.animeted_bg {
	-webkit-animation: color-change-3x 3s 1s infinite alternate both;
	        animation: color-change-3x 3s 1s infinite alternate both;
}

@-webkit-keyframes color-change-3x {
  0% {
    background: #f0f6ff
  }
  50% {
    background: #eff6ff;
  }
  100% {
    background: #e9f3ff;
  }
}
@keyframes color-change-3x {
  0% {
    background: #f0f6ff
  }
  50% {
    background: #eff6ff;
  }
  100% {
    background: #e9f3ff;
  }
}


