/*
	Portfolio 5
	Brian Diamond
	Date: 10/8/2021
*/

/* body */

body {
	background-color: #f0f8ff;
	background-image: url(images/ballbackground.jpg);
	background-repeat: no-repeat;
}

.align {
		text-align: right;
	}

img.alignleft {
		text-align: left;
}

strong {
		font-weight: bolder;
		font-variant: small caps;
}

em {
	font-weight: 700em;
}

li {
	color: purple;
	list-style-type: square;
	background-image: url(images/whitelist.jpg);
	padding-left: 15px;
	padding-bottom: 15px;
	line-height: 1.2em;
}

strong em {
		color: blue;
}

.advertisement {
		text-align: center;
		color: white;
		background-color: black;
		float: right;
		padding: 10px 10px 10px 10px;
		text-transform: capitalize;
}
			
/* links */

a {
	font-size: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	color: green;
}

a:link {
	color: green;
	text-decoration: none;
}

a:visited {
	color: aqua;
}

a:hover {
	color: purple;
	text-decoration: underline;
}

a:active {
	color: brown;
}

/* Heading styles */

h1 {
	font-size: 2.5em;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: .2em;
	word-spacing: .5em;
	text-align: center;
	background-color: aqua;
	border-top: solid thick white;
	border-bottom: solid thick white;
}

h2 {
	font-size: 1.8em;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	background-image: url(images/h2heading.jpg);
}

h1, h2 {
		color: blue;
}

img.left {
		float: left;
		margin: 0 10px 0 10px;
}

img.right {
		float: right;
		margin: 0 10px 0 10px;
}

.clear {
		clear: both;
}

/* paragraph */

p {
	font-size: 1.2em;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
	color: black;
	line-height: 2em;
	margin: 0em;
}
	
	

