.bg {
    background-image: url("./missingtexturebg.png");
    background-blend-mode: darken;
    animation: scrollBackground 3s linear infinite, colorthing 9s linear infinite;
}

@keyframes scrollBackground {
  0% { background-position: 0 0; background-color: blue;/* Start from the left */ }
  100% {
    background-position: 288px 288px; background-color: white; /* Move to the right */
  }
}

@keyframes colorthing {
  0% { background-color: white;}
  50% { background-color: black; }
  100% { background-color: white;}
}