/* 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." */
.container {
  text-align: center; /* Centers block elements within the container */
}

ul {
  display: inline-block; /* Makes the list behave like a block but only as wide as its content */
  text-align: left;     /* Re-aligns the text within the list items to the left */
  padding-left: 0;      /* Removes default padding issues in some browsers */
}

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}