@charset "utf-8";
/* CSS change color on logo */

 #logs {
	border-radius:3%;
  -webkit-animation: background 5s cubic-bezier(1,0,0,1) infinite;
  animation: background 5s cubic-bezier(1,0,0,1) infinite;  
}


@-webkit-keyframes background {
	border-radius:80px;
  0% { background-color: #F00; }
  33% { background-color: #ccc; }  
  67% { background-color: #F00; }
  100% { background-color: #ccc; }
}

@keyframes background {
  0% { background-color: #F00;; }
  33% { background-color: #ccc; }  
  67% { background-color: #F00;; }
  100% { background-color: #ccc; }
}
