/* 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;
  width: 90%;           /* Sets the body's width to 90% of the viewport */
  max-width: 1200px;   /* Limits the width to a maximum of 1200 pixels */
  min-width: 320px;    /* Ensures the body does not shrink below 320 pixels */
  margin: 0 auto;      /* Centers the body element */
  color: black;
  font-family: Verdana;
}

p {
  line-height: 32px;
  margin-bottom: 30px;
}