@keyframes burning {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}
.burn { animation: burning 1.4s infinite alternate ease-in-out; }
