/*
Author: William Bergler
Course ITWP 1050
File: styles.css
CSS external file for homework 2, to format paragraphs and an image
*/

/*formats the font size and margins of homework 2 in the body*/
body{
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
}
/*Sets global text color*/
* {
    color: rgb(0, 98, 0);
}
/*Sets the margins for the footer*/
footer{
    margin-top: 50px;
    margin-bottom: 50px;
}
/*Puts a black solid border around the image*/
img{
    border-style: solid;
    border-color: black;
    border-radius: 10px;
}
/*Adds (external in red after the link*/
.external-link::after{
    content: ' (external)';
    color: red;
}