/* Name: Emily Gorgees | Course: ITWP 1050 
This assignment will be a web page incorporated with various element selectors, the ::after pseudo-element, and an external CSS file */


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

}

/* This sets the text color for each HTML element to brown */
* {
    color: rgb(87, 45, 45);
}

/* This sets the footer's top and bottom margin */ 
footer {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* This controls the image style */ 
image {
    border: 1px solid blanchedalmond;
    border-radius: 10px;

}

/* This uses the ::after psuedo element in conjunction with a class to display a formatted link to the source of my content */
.external-link::after {
    content: ' (external)' ;
    color: blueviolet;
}

