/* Sets the background color for the entire page to a light gray */
body {
  background-color: beige;
  font-family: Monospace; /* Sets a default font for the site */
  color: black; /* Sets the default text color */
}

/* Styles all H1 headings */
h1 {
  color: black;
  text-align: left;
}

/* Styles all paragraph text */
p {
  font-size: 13px;
  line-height: 1.5;
   text-align: left;
}