body{
	background-color:silver;
}
*{box-sizing: border-box;}
div.wrapper{
	position:relative;  /* body */
	margin:0px auto; /* center a webpage */
	border: solid black 1px;
	width: 500px;
	height:400px;
}

div.image{
	position:absolute;
	top:5px;
	left:5px;
	height:280px;
	width:200px;
	border:solid blue 1px;
}

div.content{
	position:absolute;
	top: 5px;
	right:5px;
	height:280px;
	width:285px;
	border:solid green 1px;
}

div.description{
	position:absolute;
	bottom:5px;
	left:5px;
	right:5px;
	height:105px;
	border:solid purple 1px;
}


