/* CSS Document used for the homework2 assignment
Author: Grace Trombley
Course: ITWP 1050
File: styles.css
Assignment: Include CSS in an informational web page of your choosing
*/

body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    text-align: center;
}

/*changes all text to be dark red*/
* {
    color: darkred;
}

footer {
    margin-top: 50px;
    margin-bottom: 50px;
}

/*makes the image rounded with a border*/
img {
    border: 2px solid black;
    border-radius: 10px;
}

/*styles the sourse link*/
.source-link {
    font-size: larger;
}

.source-link::first-line {
    text-decoration: underline;
}

.source-link::before {
    content: "Source:";
}

.source-link::after {
    content: "(external)";
    color: red;
}

