body {
  width: 100vw;
  height: 100vw;
  overflow: hidden;
  background-color:#222034;
  background-image: url('CHEESE_drop_shadow.svg');
  background-repeat: repeat;
  animation: scrollBgDiagonal 200s linear infinite;  /*Please ignore this abomination, it just works*/
  background-size: 10% 2.7%;
}


@keyframes scrollBgDiagonal {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 1000% 1000%; /*Please ignore this abomination, it just works*/
  }
}

