/* 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: beige;
  color: brown;
  font-family: "Times New Roman";
  
  .main-content {
  width: 75%;
  padding: 16px; /* smaller padding */
  font-size: 0.9em; /* smaller text in main area */
}

.entry h3 {
  font-size: 1.1em;
  margin-bottom: 3px;
}

.entry p {
  font-size: 0.9em;
  line-height: 1.5;
}
}