/* 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: #f5ede6;
  color: gray;
  font-family: monospace;
}

h1 {
  font-size: 52px;
}

p {
  font-size: 16px;
}
  
.main-div {
  /* This sets the width to a third of the screen. */
  width: 33%;
  
  /* This sets the left margin to a specific value to push it away from the edge, 
     and the right margin to "auto" to align it to the left. */
  margin-left: 20px;
  margin-right: auto;

  /* Adds space inside the div so text doesn't touch the edges. */
  padding: 20px;
  background-color: #e6dcd3;
  border: 1px solid gray;
}

.red-part {
  color: red;
}

.green-part {
  color: #82e085;
}

.gray-part {
  color: #2e2e2e;
}