* {
	box-sizing: border-box;
}

h1 {
	text-align: center;
	margin-bottom: 2em;
	font-size: 250%;
}

small:after {
	content: "\25bc";
}

h2 a {
	min-height: 100%;
	margin-left: 2em;
	font-size: 125%;
	color: var(--headingcolor);
	border-top: 2px solid var(--navBackground);
	text-decoration: none;
}

figure img {
	max-width: 50%;
}

figcaption {
	margin-top: .1em;
	margin-bottom: 2em;
	margin-left: 1em;
}
div > ul{
	margin-left: 10em;
	& a {
		text-decoration: none;
		color: black;
	}
	& a:hover, a:focus {
		text-decoration: underline;
		color: var(--emphasis);
		background-color: var(--navBackground);
	}
	& li {
		padding-bottom: 2em;
		font-size: 125%;
	}
}

#accordion div {
	overflow: hidden;
	height: 0;
	transition: height 1s ease-in-out 0s;
}

#accordion div:target {
	height: auto;
}

form > div {
    margin-left: 10em;
}

input, select, button {
	padding: .2em;
	margin-bottom: 1em;
}

label{
	display: block;
}

input, select {
	width: 100%;
}

button {
	background-color: var(--navHover);
	font-weight: bold;
	border-radius: 5px;
	padding: .6em;
}

textarea {
    width: 100%; 
    padding: .2em; 
    height: 5em;
    font-family: inherit; 
    font-size: inherit;
}