/* 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;
  text-align: center;    /* Centers the inline-block <ul> on the page */
}

.center-text {
  display: inline-block; /* Makes list only as wide as the longest item */
  text-align: left;      /* Keeps the bullets vertically aligned */
  padding-left: 1.5em;   /* Sufficient space for bullets; don't use 50em */
}

