@charset "UTF-8";
/* CSS Document used for homework 2 (styling a given topic, I chose "I Wandered Lonely as a Cloud" by William Wordsworth)
Author: Melissa Daoud
Date created: 10/27/2023
Course: ITWP 1050
File: styles.css
*/

/*Body tag: Add a 25 pixel margin, declare font family and size, and center align text */
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
}

/* Universal selector; set the color of all elements to dark green */
* {
    color: darkgreen;
}

/* Give the image within the img tag a 1 pixel, solid black border with rounded edges */
img {
    border: 1px solid #000000;
    border-radius: 10px;
}

/* Add a top and bottom margin of 50 pixels */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
}


/* Classes */

/* Place the word (external) after a link and made it blueviolet colored */
.external-link::after {
    content: ' (external)';
    color: blueviolet;
}