/*
   Final Project

   Special Effects style sheet
   Author: Jessica Lockwood
   Date:   2/29/2016

   Filename:         effects.css
   Supporting Files: borderimg.png

*/

/* Heading text styles */

section#main h1 {
	color: rgb(102, 0, 102);
	text-shadow: black 1px 1px 0px,
				rgba (90, 127, 0, 0.7) 5px 5px 10px;
}

/* Box shadow styles */

figure img {
	
	-moz-border-radius: 25px;
	-webkit-border-radius: 25pz;
	border-radius: 25px;
	
	-moz-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	box-shadow: rgba(0, 0, 0, 0.6) 10px 10px 15px;
	
}

section#main {
	-moz-box-shadow: inset rgba(0, 0, 0, 0.3) -5px -5px 10px;
	-webkit-box-shadow: inset rgba(0, 0, 0, 0.3) -5px -5px 10px;
	box-shadow: inset rgba(0, 0, 0, 0.3) -5px -5px 10px;
}

section#main table {
	-moz-box-shadow: black 5px 5px 5px;
	-webkit-box-shadow: black 5px 5px 5px;
	box-shadow: black 5px 5px 5px;
}

/* Style rule to add a dark purple vertical gradient to the
   background of the article element */

article {
	background: -o-linear-gradient(black, rgb(26, 0, 26) 20%, white 80%);
	background: -ms-linear-gradient(black, rgb(26, 0, 26) 20%, white 80%);
	background: -moz-linear-gradient(black, rgb(26, 0, 26) 20%, white 80%);
	background: -webkit- linear-gradient(black, rgb(26, 0, 26) 20%, white 80%);
	background: linear-gradient(black, rgb(26, 0, 26) 20%, white 80%);
}
