/*
	Portfolio 4
	Author: Cole Larson
	Date: 11/10/21
*/


/* body */

body {
	background-color: dimgray;
}

/* 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  */

h1, h2, h3, h4, h5, h6 {
	color: whitesmoke;
}

h1 {
	font-size: 20pt/*2em*/;
	font-family: arial, helvetica, sans-serif;
	letter-spacing: .2em;
	word-spacing: .5em;
	text-align: center;
	color: /*white*/;
	background-color: goldenrod;
}

h2 {
	font-size: 16pt/*1.5em*/;
	font-family: arial, helvetica, sans-serif;
	text-align: left;
}

/* paragraphs */

p {
	font-size: 14pt/*1em*/;
	font-family: arial, helvetica, sans-serif;
	text-align: left;
	color: whitesmoke;
	line-height: 2em;
	margin: 0
}

/* images */

img.left {
	text-align: left;
}

/* 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 */

.right {
	text-align: right;
}
















































