/*Rachel Spelich, ITWP1050, Homework 2 Assignment on Winnie-The-Pooh*/

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

/*text color to a golden brown*/

* {
    color: #b1823b;
}

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

/*image border and radius styling*/
img {
    border: 1px solid #b1823b;
    border-radius: 10px;
}

/*Source link with pseudo-element applied to include (external)*/
.external-link::after {
    content: " (external)";
    color: red;
}