/*
    Author: Philip Howard
    Date:   2026-03-27
    Course: ITWP 1050

    Stylesheet for Homework 2
*/

/*Body style*/
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
}

/*Default font color*/
* {
    color:darkslategray;
}

/*Footer style*/
footer {
    margin-top: 50px;
    margin-bottom: 50px;
}

/*Image borders*/
img {
    border-style: solid;
    border-color: black;
    border-width: 1px;
    border-radius: 10px;
}

/*Format source link*/
.source::after {
    content: " (external)";
    color: red;
}