body{
	font-family: Arial, Helvetica, sans-serif;
	background:forestgreen;
}
*{box-sizing: border-box;}


div.log{
	text-align: center;
}


div.wrapper{
	position:relative;  /* body */
	margin:0px auto; /* center a webpage */
	text-align: center;
	border: solid black 1px;
	width: 800px;
	height:550px;
}

div.image{
	position:absolute;
	top:5px;
	left:5px;
	height:400px;
	width:300px;
	border:solid black 1px;
}

div.content{
	position:absolute;
	top: 5px;
	right:5px;
	height:400px;
	width:480px;
	border:solid black 1px;
}

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

div.red{
	color:red;
}

