/*
	Layout Style sheet
	
	Portfolio 3
	Author: Edgar Martinez
	Date: October 13, 2021
*/

/*Body*/
body {
		background-color: dimgrey;
}
/* links */
a {
			font-size: 1em;
			font-family: arial,helvetica, sans-serif;
			color: goldenrod;
}

/* Heading Styles */
h1 {
		font-size: 2em;
		font-family: arial, helvetica, sans-serif;
		letter-spacing: .2em;
		word-spacing: .5em;
		text-align: center;
		color: red;
		background-color: blue;
}
h2 { 
	font-size: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: blue;
}

h4 { 
	color: mediumblue;
}

/* Paragraph */
p { 
	font-size: 1em;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: yellow;
	line-height: 2;
	margin: 0;
}

strong {
		font-weight: bolder;
		font-variant: small-caps;
}

em { 
	font-weight: 700;
}

/* lists */
ol { 
	color: deepskyblue;
	font-size: 1.3em;
}

ul { 
	color: ghostwhite;
}

dl { 
	color: ghostwhite;
}

<style type="text/css">

h1 {
	font-size: 20pt;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: .2em;
	word-spacing: .5em;
	text-align: center;
	color: red;
	background-color: blue;
	}
	
h2 {
	font-size: 16pt;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: blue;
	background-color:dimgrey;
}

.center {
	text-align: center;
}

.right {
	text-align: right;
}

p.left {
	text-align: left;
}


p {
	font-size: 14pt;
	font-family: arial, helvetica, sans-serif;
	text-align: left;
	color: aqua;
	line-height: 2;
	margin: 0;
}

strong {
	font-weight: bolder;
	font-style: small-caps;
}

em {
	font-weight: 700;
}

Ol li {
	color: navy;
	list-style-type: square;
}

a:link {
	color: gold;
}

a:visited {
	color: springgreen;
}

a:hover {
	color: red;
}

a:active {
	color: pink;
}

</style>


	
	

