html {
	image-rendering: crisp-edges;
}

body {
	background-image: url(HomeAssets/Backgrounds/chessboard.png);

	animation-name: background-scroll;
	animation-duration: 32s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	
	color: Tan;
	text-shadow: 1px 1px #8a5942;
}

@keyframes background-scroll {
	from {
	}
	to {
		background-position: 1200px 600px;
	}
}

#main {
	width: 100%
}

.header {
	width: 30%
}