/*
	Layout Style sheet
	
	Portfolio 5
	Author: Edgar Martinez
	Date: October 13, 2021
*/

/*Body*/
body {
		background-color: dimgrey;
		background-image: url(images/brick-background.jpg);
}
/* 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;
		border-top: solid thick green;
		border-bottom: solid thick yellow;
}
h2 { 
	font-size: 1.5em;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
	color: black;
	background-image: url(images/red-brick-wall.jpg);
	
}

h4 { 
	color: aqua;
}

/* 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;
	background: url(images/dark-background.jpg) black 0.3em no-repeat;
	padding-left: 60px;
	line-height: 2em;
	}
	
ul li { 
	color: white;
}	


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;
	
	
	}

.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;
}

img.float-left {
	float: left;
	margin: 0 10px 10px 0;
}

img.float-right {
	float: right;
	margin: 0 0 10px 10px;
}

strong {
	font-weight: bolder;
	font-style: small-caps;
}

.clear {
	clear: both;
}

em {
	font-weight: 700;
}

Ol li {
	color: aqua;
	list-style-type: square;
}
	
	
a:link {
	color: gold;
}

a:visited {
	color: springgreen;
}

a:hover {
	color: red;
}

a:active {
	color: pink;
}

footer.advertisement {
	text-align: center;
	color: white;
	background-color: black;
	float: right;
	padding: 10px;
	text-transform: uppercase;
}

</style>


	
	

