/* Name: Aaron Robinson
   Course: ITWP 1050
   Assignment Info: This assignment is intended to showcase the student's findings about CSS styling discussed in the first two chapters of the textbook. */

/* 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;
  text-align: center;
  background-color: black;
}

/* A universal selector that changes (almost) all of the text to the color specified below */
* {
	color: DarkOrange;
}

/* 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 in the page */
.external-link::after {
	content: ' (external)';
	color: DodgerBlue;
}