html, body {
	height: 100%;
	margin: 0;
	background-color: #000000;
	font-family: 'Libre Baskerville', serif;
	color: #eeeeee;
	-webkit-font-smoothing: antialiased;
}
.main-container {
	margin: -50px auto;
	padding: 80px 40px;
	max-width: 1230px;
	width: 68%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 60px;
}
#navigation {
	position: sticky;
	top: 60px;
	width: 220px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	padding-right: 30px;
	border-right: 4px solid #ffffff;
}
#navigation a {
	position: relative;
	display: block;
	padding: 16px 24px;
	background-color: #ffffff;
	color: #000000;
	font-family: 'Libre Baskerville', serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	transform: translateX(-60px);
	opacity: 0.9;
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),opacity 0.35s ease;
}
#navigation a::before {
	content: "❧";
	position: absolute;
	top: 50%;
	left: calc(100% + 20px);
	transform: translateY(-50%);
	color: #ffffff;
	font-size: 28px;
	line-height: 1;
	opacity: 0;
	transition: opacity 0.25s ease;
}
#navigation a:hover {
	transform: translateX(0);
	opacity: 1;
}
#navigation a:hover::before {
	opacity: 1;
}
#content {
	flex: 1;
	max-width: 760px;
}
.contentx {
	text-align: justify;
	line-height: 1.8;
	letter-spacing: 0.2px;
}
.contentx > p:first-of-type::first-letter {
	font-family: 'Cinzel Decorative', serif;
	font-size: 4.5em;
	font-weight: 900;
	float: left;
	line-height: 0.75;
	margin: 6px 12px 0 0;
	color: #000000;
	background-color: #ffffff;
	padding: 0 8px;
	border: 2px solid #ffffff;
}
.contentx span {
	display: inline-block;
	padding: 2px 6px;
	background-color: #ffffff;
	color: #000000;
	font-weight: 700;
}
#header {
	height: 612px;
	width: 100%;
	background: #000000 url(images/head.jpg) no-repeat center;
}
h1 {
	display: inline-block;
	margin-bottom: 50px;
	padding: 12px 24px;
	font-family: 'Cinzel Decorative', serif;
	font-size: 29px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #000000;
	background-color: #ffffff;
	border-left: 12px solid #ffffff;
	outline: 4px solid #ffffff;
	outline-offset: 8px;
}
h1::selection {
	background: #000000;
	color: #ffffff;
}
blockquote {
	position: relative;
	margin: 60px 0;
	padding: 30px 40px 30px 50px;
	background: #000000;
	color: #ffffff;
	font-style: italic;
	line-height: 1.9;
	letter-spacing: 0.5px;
	border-left: 8px solid #ffffff;
}
blockquote::before {
	content: """;
	position: absolute;
	top: -25px;
	left: 15px;
	font-family: 'Cinzel Decorative', serif;
	font-size: 110px;
	font-weight: 900;
	color: #ffffff;
	line-height: 1;
	text-shadow: 4px 4px 0px #000000;
}
blockquote::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 4px;
	background-color: #ffffff;
}
blockquote::selection {
	background: #ffffff;
	color: #000000;
}
textarea, input, select {
	width: 100%;
	max-width: 450px;
	padding: 12px 8px;
	margin: 16px 0;
	background: #000000!important;
	color: #ffffff!important;
	border: 2px solid #ffffff;
	box-sizing: border-box;
}
textarea:focus, input:focus, select:focus {
	outline: none;
	background: #000000;
	color: #ffffff;
}
a {
	color: #ffffff;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
	font-weight: 700;
}
a:hover {
	background-color: #ffffff;
	color: #000000;
	text-decoration: none;
}
b, strong {
	color: #ffffff;
	font-weight: 700;
	background-color: #222222;
	padding: 0 4px;
}
i, em {
	color: #ffffff;
	font-style: italic;
}
#footer {
	position: relative;
	margin-top: 140px;
	padding: 80px 0 60px;
	text-align: center;
	color: #F6F6F6;
	font-family: 'Cinzel Decorative', serif;
	font-size: 11px;
	letter-spacing: 4px;
	text-transform: uppercase;
}
#footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60%;
	max-width: 400px;
	height: 8px;
	background-color: #ffffff;
	clip-path: polygon(0 50%, 50% 0, 100% 50%, 50% 100%);
}
#footer::after {
	content: "❧";
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: #000000;
	padding: 0 15px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
}
#footer a {
	color: #ffffff;
	text-decoration: none;
	font-weight: 700;
	padding: 2px 4px;
	transition: background-color 0.2s ease, color 0.2s ease;
}
#footer a:hover {
	background: #ffffff;
	color: #000000;
}
