body {
  background-image: url('particles_checkmark.svg');
  background-repeat: repeat;
  background-size: 50px;
  animation: drift 30s linear infinite;
  background-attachment: fixed;
}

@keyframes drift {
  from { background-position: 0 0; }
  to { background-position: 500px 500px; }
}
