/* CHANGE 1: Updated background color to warm brown/orange gradient for capybara theme */
/* CHANGE 2: Increased border-radius from 25px to 35px for more rounded corners */
#all {
	border:1px solid black;
	border-radius:35px;
	position: absolute;
	width: 1000px;
	height: 1100px;
	box-shadow:5px 5px 10px #999999;
	background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

/* CHANGE 3: Changed font family from Trebuchet to Georgia for more elegant look */
/* CHANGE 4: Changed color to warm brown (#5d4037) to match capybara theme */
#headline {
	font-size: 3em;
	font-family: Georgia, "Times New Roman", serif;
	text-align: center;
	position: absolute;
	top: 30px;
	left: 350px;
	text-decoration:underline;
	color: #5d4037;
}

#thumbnails {
	position: absolute;
	top: 175px;
	left: 50px;
	width: 150px;
	height:auto;
	opacity:0.5;
}
#thumbnails li{
	list-style:none;
}
#thumbnails:hover{
	cursor:pointer;
	opacity:1;
}
/* CHANGE 5: Increased margin from 10px to 15px for better spacing between thumbnails */
.smallimg {
	width: 100px;
	margin:15px;
	float: left;
}

#largearea {
	position: absolute;
	top: 138px;
	left: 300px;
	width: 650px;
}

/* CHANGE 6: Added border (warm brown) and box-shadow to main photo for enhanced visual appeal */
#mainphoto {
	width: 650px;
	float: left;
	margin:50px 15px 50px 0px;
	border: 3px solid #5d4037;
	box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
}

/* CHANGE 7: Increased font size from 18px to 22px for better readability */
/* CHANGE 8: Added italic font style and warm brown color (#6d4c41) to match capybara theme */
#caption {
	font-size: 22px;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	position: absolute;
	top: 135px;
	left: 300px;
	width: 650px;
	font-style: italic;
	color: #6d4c41;
}