.header .logo{
  animation: load 1.5s infinite ease-in-out;
  animation-iteration-count:1;
  animation-fill-mode:both;
  
  -webkit-animation: load 1.5s infinite ease-in-out;
  -webkit-animation-iteration-count:1;
  -webkit-animation-fill-mode:both;
  
  -moz-animation: load 1.5s infinite ease-in-out;
  -moz-animation-iteration-count:1;
  -moz-animation-fill-mode:both;
}
.content{
  animation: delay 1.5s infinite ease-in-out;
  animation-iteration-count:1;
  animation-fill-mode:both;
  
  -webkit-animation: delay 1.5s infinite ease-in-out;
  -webkit-animation-iteration-count:1;
  -webkit-animation-fill-mode:both;
  
  -moz-animation: delay 1.5s infinite ease-in-out;
  -moz-animation-iteration-count:1;
  -moz-animation-fill-mode:both;
}
