.diagonal-background {
	position: fixed;
	/* Position absolutely to cover the body */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

	z-index: -1;

	/* --- IMPORTANT CHANGES FOR IMAGE BACKGROUND --- */
	/* Specify your image URL here. Replace with your actual image path or URL. */
	background-image: url('/assets/img/background.png');
	/* Fallback in case the image fails to load. */
	background-color: #a724e7;
	/* Dark blue background */
	background-repeat: repeat;
	/* Ensure the image doesn't tile by default */
	background-size: 160%;

	image-rendering: optimizeSpeed;
	/* STOP SMOOTHING, GIVE ME SPEED  */
	image-rendering: -moz-crisp-edges;
	/* Firefox                        */
	image-rendering: -o-crisp-edges;
	/* Opera                          */
	image-rendering: -webkit-optimize-contrast;
	/* Chrome (and eventually Safari) */
	image-rendering: pixelated;
	/* Universal support since 2021   */
	image-rendering: optimize-contrast;
	/* CSS3 Proposed                  */
	-ms-interpolation-mode: nearest-neighbor;
	/* IE8+
}