/* This is a universal selector for font color black*/
* {
	color: black;
}
/* This is the body selector*/
body {
	margin: 25px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	text-align: center;
}
/* This is the footer selector*/
footer p {
	margin-top: 50px;
	margin-bottom: 50px;
	text-align: center;
}
/* This is the img tag selector which will create a border and a radius*/
img {
    display: block;  /* Makes the image a block element so margin works */
    margin: auto; 
	border-style: solid;
	border-width: 1px;
	border-color: black;
	border-radius: 10px;
	width: 50%;
	height: auto;
}




/* This is additional css to control the div attributes*/
p {

	display: flex;
	padding: 20px;
	margin-left: 30px;
}

/* This is a pseudo element that highlights links when selected*/
p::selection {
    background-color: yellow;
    color: black;
}

/* This class is for source links*/
.source {
	font-size: 1em;
	font-weight: 500;
	color: forestgreen;
	text-align: center;
	display: inline-block;
}


/* This is additional css to help control the div column sizing*/
.col-1 {width: 8.33%;} 
.col-2 {width: 16.66%;} 
.col-3 {width: 25%;} 
.col-4 {width: 33.33%;} 
.col-5 {width: 41.66%;} 
.col-6 {width: 50%;} 
.col-7 {width: 58.33%;} 
.col-8 {width: 66.66%;} 
.col-9 {width: 75%;} 
.col-10 {width: 83.33%;} 
.col-11 {width: 91.66%;} 
.col-12 {width: 100%;} 