#all {
	/* changed border size and color */
	border:2px solid green;
	/*added padding*/
	padding: 10px;
	border-radius:25px;
	position: absolute;
	width: 1000px;
	height: 1100px;
	box-shadow:5px 5px 10px #999999;
}

#headline {
	/* changed color */
	color: rgb(193, 11, 11);
	font-size: 3em;
	/* added a bolder font weight */
	font-weight: bolder;
	/* changed font */
	font-family: "Chewy", system-ui, sans-serif; 
	text-align: center;
	/* removed absolute position */
	top: 30px;
	left: 350px;
	/*removed underline in headline*/
}
/* added subheadline */
#subheadline{
	color: rgb(69, 170, 69);
	font-size: 10px;
	text-align:center;
	left: 350px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; 
	font-style:italic;
}

#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;
}
.smallimg {
	width: 100px;
	margin:10px;
	float: left;
}

#largearea {
	position: absolute;
	top: 138px;
	left: 300px;
	width: 650px;
}

#mainphoto {
	width: 650px;
	float: left;
	margin:50px 15px 50px 0px;
	/* added border */
	border: 5px rgb(54, 118, 6) solid;
}

#caption {
	font-size: 18px;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	position: absolute;
	top: 135px;
	left: 300px;
	width: 650px;
}