/* 
Claire Muller
ITWP 1050
Homework 2
*/


/* This block styles the header as centered */
header {
    text-align: center;
}

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

/* This universal selector makes all text green */
* {
    color: #376b50;
}

/* This block styles the footer margins */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
}

/* This block styles images with a border and centered */
img {
    border: 1px solid #376b50;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}


/* This block places text after external links */
.external-link::after {
    content: ' (external)';
    color:  #dd98a7;
    }