@charset "utf-8";
/* CSS Document */

#layout {
	max-width:1400px;
	margin:0 auto;
	border-radius:3px;
}
body{
	background-color:#A1BEE5;
}
header {
	background-color:#E4DBC4;
	color: black;
	padding:5px;
	font-size: 25px;
	text-align: center;
	border-radius:5px 5px 0 0;
}
section {
	margin:0 auto;
	width:90%;
}
article {
	background-color: white;
	padding:10px;
	float: left;
	box-sizing: border-box;
	line-height:150%;
	text-align: justify;
}
article a:link img {
	box-shadow: 1px 3px 5px grey;
	border-radius:50%;
	margin: 5px;
}
article a:hover img {
	background-color: lightsteelblue;
}
article p {
	font-size:18px;
}
img {
	width:90%;
	display:block;
	margin:0 auto;
	border-radius:10px;
	padding:5px;
	border: solid thin grey;
}
nav {
	background-color:#E4DBC4;
	padding:15px;
	border-radius:0 0 5px 5px;
}
nav a:link, a:visited {
	text-decoration: none;
	padding:8px;
	background-color: white;
	color: black;
	margin: auto 5px;
	border: solid thin grey;
	border-radius:5px;
}
nav a:hover {
	background-color: lightsteelblue;
	color: black;
	border-radius:5px;
}
footer {
	background-color:#E4DBC4;
	border-radius:10px;
	clear: both;
	padding:10px;
}
footer p {
		text-align: right;
}
footer a:link {
	text-decoration: none;
	color: black;
	padding:8px;
	background-color: white;
	border-radius:5px;
	border: solid thin grey;
	float: left;
	margin-top:8px;
}
footer a:hover {
	background-color: lightsteelblue;
	color: black;
	border-radius:5px;
}