/* 
	Name:Christopher Millen
	Course: ITWP 1050
	Description: This is the style sheet for the Great Gatsby Summary Page

 */


/* Styling for the body of the page */
body{
	margin: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-align: center;
}

/*Color for every element on the page via the univeral selector*/
*{
	color: #808080;
}

/*Styling for the footer on the page */
footer{
	margin-top: 50px;
	margin-bottom: 50px;
}

/*Styling for the image on the page */
img{
	border: 1px solid black;
	border-radius: 10px;
}

/*Adding addition content to anchor and styling the color*/
.page_link::after{
	content:'(External)';
	color: #F7CF1D;
}