/*
	Portfolio 5
	Author: Cole Larson
	Date: 11/12/21
*/


/* body */

body {
	background-color: dimgray;
	background-image: url(images/sparks.png);
	margin: 0 40px 0;
}

/* links */

a:link {
	font-size: 1em;
	font-family: arial, helvetica, sans-serif;
	color: gold;
}

a:visited {
	font-size: 1em;
	font-family: arial, helvetica, sans-serif;
	color: goldenrod /*gold in nav bar*/;
}

a:hover {
	font-size: 1em;
	font-family: arial, helvetica, sans-serif;
	color: whitesmoke;
}

a:active {
	font-size: 1em;
	font-family: arial, helvetica, sans-serif;
	color: darkgray;
}

/* headings  */

h2, h3, h4, h5, h6 {
	color: whitesmoke;
}

h1 {
	font-size: 2em;
	font-family: arial, helvetica, sans-serif;
	letter-spacing: .2em;
	word-spacing: .5em;
	text-align: center;
	color: white;
	background-color: goldenrod;
	border-top: solid thick gold;
	border-bottom: solid thick gold;
}

h2 {
	font-size: 1.5em;
	font-family: arial, helvetica, sans-serif;
	text-align: left;
}

/*header*/

header {
	background: url(images/red_ribbon.jpg) firebrick;
}



/* paragraphs */

p {
	font-size: 1em;
	font-family: arial, helvetica, sans-serif;
	text-align: left;
	color: whitesmoke;
	line-height: 2em;
	margin: 0
}

/* images */

img.left {
	float: left;
	margin: 0 20px 20px 0;
}

img.right { 
	float: right;
	margin: 0 0 20px 20px;
}

/* strong element*/

strong {
font-weight: 800;
font-variant: small-caps;
}

strong em {
	color: goldenrod;
}

/* em element */

em {
	font-weight: 700;
}

/* lists */

li {
	color: whitesmoke;
	list-style-type: square;
}

/* independent classes */

.clear {
	clear: both;
}

.vertical-align-top {
	vertical-align: top;
}
















































