/* CSS Document used for homework 2 assignment
Author: Braxton Young
Course: ITWP 1050
File: style.css
*/

/* CSS element selector for body declarations */

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

/* CSS universal selector for text color for each HTML */

* {
    color: #4682B4;
}

/* CSS element selector for number headings */

h2 {
    font-weight: bold;
    color: black;
}

/* CSS element selector for footer declarations */

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

/* CSS element selector for image declarations */

img {
    border: 25px solid black;
    border-radius: 45px;
}

/* CSS ::after pseudo-element */

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