/* =========================================
   Name: Samuel Ulysses Barnes II
   Course: ITWP 1050
   Assignment: Homework 2
   Description: External stylesheet for Homework 2
   ========================================= */

/* Universal selector - sets text color for entire page */
* {
    color: darkblue;
}

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

/* Image styling */
img {
    border: 1px solid black;
    border-radius: 10px;
    margin: 20px auto;
}

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

/* Source link styling using pseudo-element */
.source a::after {
    content: " (external)";
    color: red;
    font-weight: bold;
}