/* CSS Document for Homework 2
Student: Darrcelle Jackson
Course: ITWP 1050
File: styles.css */

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

/* Sets text color to Dark Magenta */
* {
   color: #8B008B;
}

/* sets footer margin and centers the footer text */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}

/* sets image border and radius */
img {
    border: 1px solid black;
    border-radius: 25px;
}

/* links external site and changes external link color */
.external-link::after {
    content: ' (external)';
    color: black;
}

/* ID that centers the validation text */
#validation {
    text-align: center;
}