@charset "utf-8";

/*
	New Perspectives on HTML5 and CSS3, 8th Edition
	Chapter 4
	Case Problem 1

	Save your Fork Graphic Design Styles

	Author: Chris LaFleur
	Date: 10/8/23
*/




/* Body Header Styles */

body{
	/* 
		This was quite tough as the book says to make
		"drop shadows to the left and right borders",
		but using filter: drop-shadow() didn't seem to
		fit the picture even though they were listed in
		order of how drops-shadow inputs are made.
		
		So, I looked at box-shadow vs filter: drop-shadow
		over and over again and decided to use box-shadow
		instead to fit the picture that they were asking
		for.
		
		Here's my filter version anyway as well:
	filter: drop-shadow(10px 0px 50px rgb(51, 51, 51))
			drop-shadow(-10px 0px 50px rgb(51, 51, 51));
	*/
	box-shadow: rgb(51, 51, 51) 10px 0px 50px,
				rgb(51, 51, 51) -10px 0px 50px;
}



/* Navigation Tabs List Styles */

body > header nav.tabs{
	background: url(sf_back1.png) center / 100% no-repeat;
}

body > header nav.tabs li{
	transform: perspective(50px) rotateX(20deg);
}

body > header nav.tabs li:hover{
	background-color: rgb(231, 231, 231);
}



/* Left Section Styles */

section#left nav.vertical{
	border: 1px solid rgb(20, 167, 170);
	border-radius: 25px;
}

section#left nav.vertical h1{
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}



/* Center Article Styles */

section#center article{
	background: radial-gradient(white 30%, rgb(151, 151, 151));
	border: 1px solid rgb(151, 151, 151);
	border-radius: 50px;
	box-shadow: rgb(51, 51, 51) 10px 10px 20px;
}



/* Blockquote Styles */

blockquote{
	background: url(sf_speech.png) center / 100% 100% no-repeat;
	filter: drop-shadow(5px 5px 10px rgb(51, 51, 51));
}

cite img{
	border-radius: 50%;
}