/* Name: Aaron Robinson
   Course: ITWP 1050 */

/* This element selector styles most, if not all of the text like this */   
body {
  margin: 25px;
  font-family: "Arial", Helvetica, sans-serif;
  font-size: 1em;
}

li.a {
	list-style: circle;
	margin-left:25px;
	padding: 5px;
}

/* This selector adjusts the top and bottom margins for the footer at the bottom of the page */
footer {
	margin-top: 50px;
	margin-bottom: 50px;
}

/* This selector gives each image a rounded blue border */
img {
	border: 1px solid DodgerBlue;
	border-radius: 20px;
}

/* This pseudo-element selector adds (external) in the specified color after the text for any external link included in the page */
.external-link::after {
	content: ' (external)';
	color: DodgerBlue;
}