/* for the root box of the css */

/* NOTE: A --XXXXX is a variable */
:root {
	--bg-color: #9d0e9a;
	--text-color: #000;
}

body {
background-color: var(--bg-color);
 color: var(--text-color);
}



