html {background-color: #FFF;}


body {
	font-family: Verdana, sans-serif;
	width: 100%;
	margin: 0 auto;
	background-color: #FFF;   
    display: flex;
    min-height: 100vh;
    flex-direction: column;
	}

a	{text-decoration: none; color: #000;}
a:hover {text-decoration: underline;}
a.active {text-decoration: underline;}

.dimmed {color: #AAA;}



header {
	position: fixed; 
    top: 0px;
    width: 100%;
	text-transform: uppercase;
	font-size: 1em;
	}

header>nav	{
	display: flex;
	justify-content: center;
	align-items: center;
    background-color: #D6EFFF;
	letter-spacing: 0.1em;
	height: 40px;
	border-bottom: 1px solid #C1D7E6;
  	}


nav.title {	
	background-color: #C1D7E6;
	}

nav * a {color: #6B7780}

header>nav>p {
	margin-left: 0.9em;
	margin-right: 0.9em;
	}



main {
	display: flex;
    flex-direction: column;
	min-height: 100px;
	flex: 1;
	margin-top: 90px;
	margin-left: 1em;
	margin-right: 1em;
	align-items: center;
	font-family: Georgia, serif;
	}



section {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	}

section>h2 {
	font-size: 1.2em;
	color: #6B7780	}

section * img {
	width: 300px;
	margin: 5px;
	}

div.popup-gallery {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 90em;
}

article {
	max-width: 30em;
	}

article.summary {
	display: flex;
	flex-direction: row;
	width: 13em;
    background-color: #D6EFFF;
    margin: 5px;
    padding: 5px;
	}

article.summary:hover {
	background-color: #C1D7E6;
	}

article>p {
	font-size: 1.1em;
	line-height: 1.5em;
	}

article>p.published {
	font-style: italic;
	color: #6B7780;
	}

article.summary>a {color: black}

article.summary * h1 {
	margin: 0px;
	font-size: 1em;
	}

aside {
	max-width: 30em;
	width: 100%;
	background-color: #D6EFFF;
	}
	
aside>nav {	
	display:flex;
	justify-content: space-between;
	}

aside * a {color: #6B7780}

aside>nav>p {
	margin: 0.5em;
	}



footer {
	display:flex;
	justify-content: center;
	background-color: #C1D7E6;
	color: #000;
	font-size: 0.7em;
	}
