/*in normal circumstances, variables and other names should follow camelCase
  however, just so it can be easily distinguished with other stuff, name the css materials using -'s
  ex: instead of homePage, use home-page
  these include html element classes and id's
  even if an element doesn't directly call something from a css file, still keep this naming convention just in case it's added later*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background: #ffffff;
	color: #111;
	min-height: 100vh;
}

a {
	color: inherit;
}