* {
	font-family: sans-serif;
}

hr {
	width: 100%;
	border: 1px solid #fd0;
}

b,
strong {
	color: #fd0;
}

a {
	color: #fd0;
	text-decoration: underline 1px;
}

html {
	color: #fff;
	font-size: 1.2em;
	display: flex;
	flex-direction: row;
	justify-content: center;
	background-color: #111;
}

body {
	width: 800px;
	padding: 15px;
	display: flex;
	flex-direction: column;
}

nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: baseline;
	font-size: 1.2em;
	gap: 0.5em;
	margin-bottom: 20px;
}

img {
	width: 500px;
}

@media screen and (max-width: 760px) {
	nav {
		flex-direction: column;
		margin-top: 0;
	}

	.site-title {
		margin: 0;
	}

	img {
		width: 400px;
	}
}

.block {
	border: 1px dotted white;
	padding: 5px 15px;
	margin: 0 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.block h1 {
	font-size: 1em;
	text-align: center;
	margin-bottom: 0;
}

.small {
	font-size: 0.8em;
}

.wave {
	background: #111;
	color: #fff;
	text-shadow:
		1px 1px 10px #fff,
		1px 1px 10px #ccc;
}

footer {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer hr {
	width: 100%;
}

@media (prefers-color-scheme: light) {
	html {
		color: #222;
		background-color: #fff;
	}

	a {
		color: #000;
		text-decoration: underline 1px;
	}

	hr {
		border: 1px solid #ddd;
	}

	b,
	strong {
		color: #000;
	}
}
