/* 
	Alasdair King, default CSS file.
	
	Versions
		23 March 2020 	Initial
		10 July 2021	Added comments. 

*/

/* This stuff is plumbing: it makes CSS work in a more predictable way.*/
html { 
	/* box-sizing: border-box;  */
} 
*, *:before, *:after { 
	/* box-sizing: inherit; */
}

/* Defaults for the page */
html, body {
	/* width:100%;
	height:100%;
	margin:0;
	padding:0;
	font-family: sans-serif;
	overflow:hidden; */
}

body {
	/* Put in a bit of white-space round the edge of the page */
	padding:1em;
	
	/* Column in the middle, centred */
	/* max-width:800px;
	margin-left:auto;
	margin-right:auto; */
}

