/*
Name: Elijah Noyes
Course: ITWP 1050
Assignment: Homework 2
Description: External CSS file for Homework 2 webpage
*/

/* This rule controls the styling for the entire page */
body {
margin: 25px;
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
text-align: center;
}

/* Universal selector that sets the text color for all elements */
* {
color: darkblue;
}

/* This rule controls the styling for the image */
img {
border: 1px solid black;
border-radius: 10px;
}

/* This rule controls the styling for the footer section */
footer {
margin-top: 50px;
margin-bottom: 50px;
}

/* This rule uses the ::after pseudo-element to add text after the link */
.source a::after {
content: " (external)";
color: red;
}
