/* elements */
body {
	background-color: #111;
	color: #CCC;
	font-family: "Courier New", Courier, mono;

}

h1 {
	color: #EEE;
}

h2 {
	text-align: center;
}

header {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 0.7em;
}

header h1 {
	margin: 0.6em 0 0.3em;
}

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

main {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

section.listen audio {
	display: none;
}

section.listen ul {
	line-height: 1.5em;
	list-style-type: none;
}

section.images img {
	margin: 1em;
}

footer {
	font-size: 0.5rem;
	text-align: end;
}

.container {
	padding: 0.3em 0.9em;
	max-width: 900px;
}

.photo-caption {
	font-size: 0.5em;
	color: #999;
	align-self: end
}

/* links */
a {
	text-decoration: underline;
}

a:link {
	color: #DDD;

}

a:visited {
	color: #CCC;
}

a:focus,
a:focus-visible {
	outline: 2px solid #777;
	outline-offset: 2px;
}

a:hover {
	font-weight: bolder;
	color: #FFF;
}

a:active {
	color: #00F;
}