/* CSS Document used for the homework 2 assignment
Author: Ahmed Rokeeb
Course: ITWP 1050
File: styles.css
*/
body {
    /* this element selector controls the styling of the body for the page */
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
}

* {
    /* this universal selector controls the color of text for the entire page */
    color: black;
}

footer {
    /* this element selector controls the styling of the page footer */
    margin-top: 50px;
    margin-bottom: 50px;
}

img {
    /* this element selector controls the styling of any image on the page */
    border: 1px solid black;
    border-radius: 10px;
}

.external-link::after {
    /* this pseudo element allows me to display text after my formatted link */
    content: '(external)';
    color: indigo;
}
