*	{
	box-sizing: border-box;
	}

body {
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;

	background: white;
}

.site-wrapper {
	max-width: 1150px;
	margin: 0 auto;
	padding: 1em;
	background-color: white;
}

nav {
	width: 250px;
	position: static;
	top: 0px;
	background: linear-gradient(315deg, white 0%, white 50%,  #e7e7e7 100%);
	border-left: 1px solid black;
	border-top: 1px solid black;
	text-align: right;
	font-size: 0.85em;
	align-self: start;
	list-style: none;
	padding: 0.5em;
}

.page-layout {
	display: grid;
	grid-template-columns: 250px 1fr 250px;
	grid-template-areas:
		"white-space header header"
		"nav content images"
		"sidebar content images"
		"footer footer footer";
	gap: 10px;
}

.white-space { grid-area: white-space; } 
.header { grid-area: header; } /* header */
.nav { grid-area: nav; } /* nav */
.sidebar { grid-area: sidebar; } /* added notes + data */
.content { grid-area: content; } /* content */
.images { grid-area: images; } /* images + comments */
.footer { grid-area: footer; } /* footer */

.container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
	gap: 5px;
	margin: 1em 0 1em 0;
	justify-content: center;
}

.container div {
	margin: 1em 0 1em 0;
	background-color: #e7e7e7;
	border: 1px solid black;
	text-align: center;
	font-size: 0.85em;
	font-style: italic;
}

.container p { 
	margin: 0.5em;
}

.container img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.logo {
	max-width: 50%;
	margin: auto;
}

.home-button {
	max-width: 50%;
	margin: 0;
	background-color: #e7e7e7;
	border: 1px solid black;
}

.home-button img {
	max-width: 100%;
	height: auto;
}

.h2-wrapper {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: baseline;
}

.h2-title {
	text-align: left;
}

.h2-date {
	font-size: 1rem;
	font-style: italic;
	font-weight: normal;
	color: inherit;
}

hr {
	margin: 2em 45% 2em 45%;
	border-width: 1px;
	border-style: double;
	border-color: black
}

.superscript {
	font-size: 0.78em;
	position: relative;
	top:-0.46em;
}

dl {
	display: grid;
	grid-template-columns: max-content 1fr;
	column-gap: 1em;
}

dt {
	text-align: right;
	font-size: 0.85em;
	word-break: break-word;
	margin-top: 1em;
}

dd {
	margin-left: 0;
}

dl.description-list {
	display: block
}

dl.description-list dt {
	text-align: left;
	font-weight: 600;
}

dl.description-list dd {
	margin-left: 1em;
}