body {
	font-size: 1em;
	font-weight: normal;
	font-family: Arial, sans-serif;
	color: #000000; /*#38a2ee;*/
	text-align: left;
	margin-left: 5%;
	margin-right: 25%;
}
	
h1 {
  font-size: 1.8em;
  font-weight: normal;
  color: #0000ff;
  background-color: #00ff00;
  /* text-align: center; */
  /*Type a CSS COMMENT here.*/
}
  
h2 {
  font-size: 4em;
}

/*To name a class in CSS, put a dot in front of it. */

.test1 {
  background-color: #010042; /*Prussian Blue*/
}

.boxtest {
  background-color: #ff0000; /* All Red, nothing else. */
  margin: 1em;
  border: 1em outset #000000;
  padding: 1em;
}

.ptest {
  background-color: #ffffff;
  border: 1em double #0000ff;
  padding: 1em;
}

.serif-demo {
  font-family: Garamond, "EB Garamond", Georgia, serif;
}
.sans-serif-demo {
  font-family: Verdana, Arial, sans-serif;
}
.cursive-demo {
  font-family: "Comic Sans MS", cursive;
}
.fantasy-demo {
  font-family: Webdings, fantasy;
}
.monospace-demo {
  font-family: "Noto Sans Mono", monospace;
}

/* Rules For the <nav> menu: */
/*Remove the bullet points:*/
nav ul {
  list-style-type: none;
}
/*Remove the line breaks, and add back some space betwen each <li>.*/
nav ul li {
  float: left;
  margin-right: 0.5em;
}
/*Change the styling of the links (<a>s). */
nav ul li a {
  text-decoration: none; /*Remove underlines.*/
  color: #4312ae; /*Change link color, both unvisited and visited colors. Dark Blue.*/
  background-color: #dddddd; /*Make a lightish grey background for the buttons.*/
  border: 2px solid #000000; /*Add a border to help build the button-form.*/
  padding: 0.25em 0.75em 0.25em 0.75em; /*Add some padding to let the text breathe inside the border. TRBL - Top, Right, Bottom, Left.*/  
}
