/* CSS Document used for homework 2
Author: Jesse Pence
Course: ITWP 1050
File: style.css
*/

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

* {
    color: #0000FF;
}

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

img {
    border: solid 1px #7FFF00;
    border-radius: 10px;
}

.external-link::after {
    content: ' (external)';
    color: #663399;
}