/* 
    Author: Guilherme Modelli
    Course: ITWP 1050
    Assignment: Homework2
*/

/*Sets font color to all elements in the page*/
/*The selector applies the teal text color to elements*/
* {
    color: teal;
}

/* Styling for the body*/
/*This sets the Margin, font-family, font-size, and text align to the body*/
body {
    margin: 25px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    text-align: center;
}

/* Styling for the Header*/
/*This class controls the styling for the header or h1*/
h1 {
    font-size: 2em;
    font-weight: bold;
}

/* Styling for the paragraph*/
/* addition styling for each paragrah if is needed*/
p {
    font-size: 1em;
    line-height: 1.5;
    margin: 15px 0;
}

/* Styling for the image */
/* Adds the required 1px solid black border and 10px border-radius to the image */
img {
    border: 1px solid black;
    border-radius: 10px;
}

/* Styling for the footer*/
/* Adds the required footer specifications, maring-top, margin-bottom, font size and color */
footer {
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 0.8em;
    color: #333;
}

/* Pseudo element with the :: after selector for the source of the text */
/* the set color to it is Dark orange and the "(external)" part as required to indicate that the information is from an outside source */
a.external::after {
    content: " (external)";
    color: darkorange;
}
