/*
Jordan Winburn
ITWP-1050

Assignment:
Homework 2, I opted to write about the recent release of the demo for Tomodachi Life: Living the Dream since I found it an interesting
marketing tactic that I could make a blog-like article for.
I tried to order this by specifity, so feel free to let me know if I did that right!
*/

/* This asterisk is the universal selector. */
/*It sets every text element on the page to the specified color, and changes the background color of the entire page.*/
* 
{
    color: floralwhite;
    background-color: orange;
}

/*This controls the body tag's styling in accordance with the directions' statement about said body tag's styling.*/
/*It controls all of the content inside of the body tag, including the image, header, and footer.*/
body
{
    font-family: Arial, Helvetica, sans-serif;
    margin: 25px;
    font-size: 1em;
    text-align: center;
}

/**/
img 
{
    border: 1px solid white;
    border-radius: 30px;
}

/*This controls only the footer tag's top and bottom margins.*/
footer
{
    margin-top: 50px;
    margin-bottom: 50px;
}

/*Adds a warning that the user will be taken off-site when clicking my link after the link is presented.*/
b::after 
{
    content: " (External)";
    color: red;
    font-weight: bold;
}