* { box-sizing: border-box; }
body {
	font-family: "Trebuchet MS", helvetica, arial, sans-serif;
	font-size: 1em;
	background-color: #6F6F6F;
}
#layout {
	width: 80%;
	max-width: 1000px;
	margin: 0px auto 3em auto;
	background-color: #F7F4DE;
	padding: 0.5em;
}
#header {
	text-align: center;
	border-bottom: 1px solid black;
}
#header p {
	margin: 0 auto;
}
#text {
	background-color: #ffe;
	padding: 0.25em 0.5em 0.5em 0.5em;
	width: 80%;
	margin: 1em auto 0 auto;
	text-align: left;
	box-shadow: 0px 0px 15px white;
	border-radius: 8px;
}
h2 { text-align: center; }
#title {
	font-size: 2em;
	font-variant: small-caps; 
	border-bottom: 1px solid black;
	margin-bottom: 0;
	letter-spacing: 0.5em;
}
#sitelist {
	display: flex;
	width: 95%;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 0 1em 1em 1em;
	background-color: #FFCD3D;
	justify-content: center;
}
#sitelist>p {
	text-align: center;
	max-width: 60%;
	background-color: white;
	font-style: italic;
	margin: 1em auto 0 auto;
	box-shadow: 0px 0px 5px gray;
	border-radius: 3px;
	}
.site {
	padding: 1em;
	margin-left: 1em;
	text-align: center;
	max-width: 280px;
	margin-top: 1em;
	border: 2px inset black;
	background-color: #f7f7f0;
}
.site .title {
	font-weight: bold;
	margin-bottom: 0.5em;
}
.site p {
	margin-top: 0;
}
.site>.desc {
	width: 100%;
	text-align: left;
	margin-top: 0;
}
.site a {
	color: black;
	text-decoration: none;
	}
.site img { border: 1px solid gray; }
