body {
	margin: 6rem 25% 4rem;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: large;
	font-weight: 300;
	line-height: 1.6rem;
	width: 50%;
	color: #3a3248;
	background-color: #fffff7;
}

p blockquote {
	margin-bottom: .5rem;
}

tagline {
	font-size: smaller;
}

ol {
	margin: auto auto auto -1.25rem;
}

nav ul {
	list-style-type: none;
	width: 100%;
	margin: 2rem 0 2rem 4.5rem;
}

nav ul li {
	display: inline-block;
	margin: auto 2rem auto 0;
}

a {
	text-decoration: none;
	color: #006800;
}

a:hover {
	text-decoration: underline;
	background: rgba(1, 1, 1, 0.15);
	cursor: pointer;
}

h1, h2, h3, h4 {
	margin-top: 2rem;
	font-weight: 500;
}

h1, h2 {
	font-weight: 600;
}

h2, h3 {
	font-size: larger;
}

code {
	font-family: monospace;
}

.codeblock {
	font-family: monospace;
	width: 30rem;
	padding: 1rem;
	background-color:rgba(1, 1, 1, 0.15);"
}

.logo {
	float: left;
	padding-right: 32px;
	width: 96px;
}

.links {
	list-style-type: none;
	margin: auto auto auto -2.5rem;
}

hr {
	margin-bottom: .5rem;
	margin-top: .5rem;
}

footer {
	font-size: small;
	margin: 4rem auto;
	line-height: 1.25rem;
}

#lastModified  {
	margin-top: 1rem;
}

/* This is the accordion stuff */

section {
	padding-top: 2rem;
	width: 100%;
	margin: auto;
}

details[open] summary~* {
	animation: open 0.3s ease-in-out;
}

@keyframes open {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

details summary::-webkit-details-marker {
	display: none;
}

details summary {
	width: 100%;
	padding: 0.5rem 0;
	border-top: 1px solid lightgray;
	position: relative;
	cursor: pointer;
	list-style: none;
	font-weight: 500;
}

details summary:after {
	content: "+";
	position: absolute;
	line-height: 0;
	margin-top: 0.75rem;
	right: 0;
	transform-origin: center;
	transition: 200ms linear;
}

details[open] summary:after {
	transform: rotate(45deg);
}

details summary {
	outline: 0;
}

details p {
	padding-top: 0;
	padding-left: 2rem;
	padding-right: 2rem;
}
