@font-face {
	font-family: "Libre Baskerville";
	font-weight: 400;
	src: url(/fonts/LibreBaskerville-Regular.ttf);
}

@font-face {
	font-family: "Libre Baskerville";
	font-weight: 700;
	src: url(/fonts/LibreBaskerville-Bold.ttf);
}

@font-face {
	font-family: "Libre Baskerville";
	font-style: italic;
	src: url(/fonts/LibreBaskerville-Italic.ttf);
}

:root {
	color-scheme: light dark;
}

html {
	background: #fff1e5;
	font: 12pt "Libre Baskerville";
}

a {
	color: #000000;
	text-decoration: underline;
}

nav {
	display: block;
	margin: 0 auto 1em;
	width: 80%;
	max-width: 1200px;
	height: 2.5em;
	border-bottom: 1px dotted #112233;
}

nav ul {
	list-style-type: none;
}

nav ul li:first-child {
	font-weight: bold;
}

nav ul li {
	float: left;
	width: 150px;
	font-size: 11pt;
	line-height: 2em;
}

nav ul li a {
	text-decoration: none;
	color: inherit;
	font-weight: inherit;
}

main {
	display: block;
	margin: 0 auto;
	width: 80%;
}

aside picture {
	width: 30%;
	max-width: 700px;
	float: right;
}

aside picture img {
	width: 100%;
}

video {
	width: 100%;
	max-width: 1024px;
}

.dictionary-breadcrumb {
	display: block;
	padding: 1em 0;
}

@media (prefers-color-scheme: dark) {
	html {
		background: #27292d;
		color: #c8c8c8;
	}
	a {
		color: #c8c8c8;
	}
	img:not([src*=".svg"]) {
		filter: invert(100%);
	}
}