/* 
  Name: Evan Jackovich
  Course: ITWP 1050
  Assignment: Homework2
  Date: 3/22/2025
*/

/*modify body(step3 section 1.2)*/
body {
  margin: 25px; 
  font-family: Arial, Helvetica, sans-serif; 
  font-size: 1em; 
  text-align: center; 
}

/*modify universial(step4 section 1.2)*/
* {
  color: #7FFF00;
}

/*modify footer(step5 section 1.2)*/
footer {
  margin-top: 50px; 
  margin-bottom: 50px; 
}

/*modify images(step6 section 1.2)*/
img {
  border: 1px solid black; 
  border-radius: 10px;   
}
/*modify images(step7 section 1.2)*/
.external-link::after {
  content: " (external)"; 
  color: #B22222; 
  font-style: italic; 
}