/* 
Name:Jordan Wlash ITWP 1050
Homework2
*/
/*Text color to all elements on the page*/
* {
    color: darkblue;
}
/*styles the entire body of the webpage*/
body {
  margin: 25px; 
  font-family: Arial, Helvetica, sans-serif; 
  font-size: 1em; 
  text-align: center; 
  background-color: #f4f4f4; 
}
/*controls the style for the main page heading*/
h1 {
  color: #000000;
}
/*style all paragraph text content*/
p {
 color: #000000;
}
/*The appearance of the image*/
img {
 display: block;
 margin: 20px auto;
 border: 1px solid black; 
 border-radius: 10px; 
 width: 400px; 
}
/*controls the footer section styling*/
footer {
 margin-top: 50px;
 margin-bottom: 50px; 
 font-size: 14px;
 color: #000000;
}
/*This adds external after a link*/
.external-link::after {
 content: " (external)";
 color: red; 
 font-weight: bold; }