/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
	margin: 0;
	text-align: center;
}
ul {
	display: inline-block;   /* shrink to content width */
	text-align: left;        /* keep list text readable */
	padding-left: 1.2em;     /* keep bullets visible */
	margin: 0 auto;
}
main {
	max-width: 900px;   /* respectable desktop width */
	width: 100%;
	margin: 0 auto;     /* centers the rectangle */
	padding: 24px;      /* breathing room */
	box-sizing: border-box;
}