.wrapper {
  display: grid;
  grid-template-columns:
    1fr
    min(40rem, 100%)
    1fr;
}
.wrapper > * {
  grid-column: 2;
}

.full-bleed {
  width: 100%;
  grid-column: 1 / 4;
}

.pseudo-full-bleed {
  width: 100%;
  grid-column: 1 / 4;
  /* constrain the width for very-large monitors */
  max-width: 1500px;
  /* center the element */
  margin-left: auto;
  margin-right: auto;
}

html {
    font-size: 20px;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    place-items: center;
}

body, li p {
    font-family: 'Georgia',  serif;
}

header, h1,h2,h3,h4,h5,h6 {
    font-family: 'Palanquin Dark', sans-serif;
}

header {
    font-size: 210%;
    font-weight: bold;
}

pre, code {
    overflow-x: scroll;
    font-size: 80%;
    line-height: normal;
}
    

/* reset */
* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
}

body {
	padding: 0 0 0 0;
	min-height: 100%;
	text-rendering: optimizeLegibility;
	font-feature-settings: 'liga' 1;
}


footer {
	padding: 0.5rem 0 5.5rem 0;
}

h1 {
	font-size: 150%;
	line-height: 1.1;
	margin-top: 1rem;
	margin-bottom: 1.5rem;
	padding-top: 0.02em;
	hyphens: none;
}

aside {
	font-size: 0.84rem;
	line-height: 1.40;
	color: #667;
}

aside em {
	font-size: 0.7rem;
}


p {
	margin-bottom: 1em;
	line-height: 1.45;
}

ul,ol {
	margin-bottom: 1em;
	padding-left: 1em;
}

li {
	line-height: 1.75em;
	margin-left: 0.75em;
}


table { 
	margin-bottom: 1.5em;
	border-collapse: collapse;
	width: 95%;
}

table tr + tr {
	border-top: 1px solid #c0c0c0;
}
table td + td {
	border-left: 1px solid #c0c0c0;
}

table td {
	padding: 0.5em;
	text-align: center;
	hyphens: none;
}

table th {
	font-weight: normal;
	text-transform: uppercase;
	font-size: 96%;
	padding: 0.25rem 0.5rem 0.25rem 0.5rem;
	line-height: 1.1;
}


a {
	color: #4066d6;
}


div.nav a:active div { 
	background: #c00000;
}

a:active { 
	color: #c00000; 
}

a:hover {
	background: #F3F4F4;
	transition-property: background;
	transition-duration: 0.5s;
}

p a {
	color: #4066d6;
}

figcaption {
	font-weight: 400;
	font-style: italic;
	font-size: 1.4em/3;
	line-height: 1.3;
	color: #666665;
	outline: 0;
	z-index: 300;
	text-align: center;
}

blockquote {
	border-left: 3.5px solid #7094cb;
	margin: 0.7em 10px;
	padding: 0.7em 20px;

}

blockquote p {
	display: inline;
}
