body {
  background-color: white;
  background-image: url("/background.png");
  background-repeat: repeat;
	position: fixed;
	z-index: -9922;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	animation: slide 100s linear infinite;
	
  background-size: 100%;
  color: beige;
  font-family: Arial;
  cursor: url("/cursor.png"), auto;
}
@keyframes slide {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: -800px 800px;
	}
}