body{
	color: #FFff00;
	background-color: #0101df;/*I have changed the background colour to red*/
	font-family: Tahoma ,Sans-serif;
}

img{
	background-color: #00ff00;
	margin: 10px;
	padding: 5px;
	border-width: 1px;
	border-style: solid;
	border-color: #00FF00;
	box-shadow: 15px 15px 15px #858585;
	opacity: 1; /*It now looks like a ghost because it is so translucent!*/
} 

h1{

color: #ffff00;/*I have changed the text colour to blue*/
}

#links{
	text-align: center;
}

ul{
list-style-type: diamond;/*I have universally changed the bulletpoint type to square*/ 
}

a:link{
	color:00FFFF;
	    }
a:link{
	text-decoration: none;/*I have the changed the hyperlink color to pink when at rest*/
	}
	
a:visited{
	color:F102FE;
	}
	
a:visited{
	text-decoration: underline;/*On the actual page, this doesn't really do much*/
	}
	
a:hover{
	color:48BB48;
	}
	
a:hover{
	text-decoration: none;/*I have changed the hyperlink style to green italics when the cursor is over it*/
	}
	
a:hover{
	font-style:italic;
	}
	
a:active{
	color:FF0000;
	}
	
a:active{
	text-decoration:underline;
	}
	
img:hover{
	opacity: 0.5 /*When you hold your mouse over the image, it is restored to its original opacity.*/
	}
	
marquee{
    marquee-style:alternate;
	direction:reverse;
	marquee-speed:fast;
	
	}
	
	