* {
	margin: 0;
	padding: 0;
}

body {
	background: url('SandBG.jpg');
	text-align: center;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif; 
}

h3 {
	text-align: center;
	margin: 10px;
}

div {
	margin: 15px auto;
}

.del {
	text-decoration: line-through;
	color: red;
}

#sample {
	height:250px;
	width:480px;
	-moz-transition:-moz-transform 0.1s ease-in; 
	-webkit-transition:-webkit-transform 0.1s ease-in; 
	-o-transition:-o-transform 0.1s ease-in;
}

#sample:hover{
	-moz-transform:scale(2); 
	-webkit-transform:scale(2);
	-o-transform:scale(2);
}

#cover {
	height: 400px;
	width: 400px;
	margin-top: 25px;
	border: 2px solid black;
	box-shadow: 10px 10px 5px #606060;
}

#blurb {
	background-color: white;
	text-align: left;
	width: 400px;
	padding: 10px;
	border: 4px gold outset;
}

	