:root {
	--page-background: #fff;
	--text-color: #52636b;
	--heading-color: #000;
	--muted-color: #738a94;
	--surface-color: rgba(229, 239, 245, 0.5);
	--subtle-border-color: #e5eff5;
}

html,
body,
body.body-container {
	background-color: var(--page-background);
}

.body-container {
	max-width: 623px;
	padding: 34px 20px 0 20px;
	margin-left: auto;
	margin-right: auto;
	color: var(--text-color);

	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-moz-font-feature-settings: "liga" on;
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;
	font-size: 1.5rem;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.6em;
}

::selection {
	background: #0400fc;
	color: white;
}
::-moz-selection {
	background: #0400fc;
	color: white;
}

.header-container {
	margin-top: 1rem;
	margin-bottom: 2rem;
}
.header-link {
	font-size: 13px;
	line-height: 1.2rem;
	color: var(--muted-color);
	text-decoration: none;
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	transition: color .166s ease-out, border-color .166s ease-out;
}
.header-link:not(:last-of-type) {
	margin-right: 30px;
}
@media (max-width: 575.98px) {
	.header-link:not(:last-of-type) {
		margin-right: 12px;
	}
}
.header-link:hover {
	color: var(--heading-color);
	border-bottom: 2px solid #0400fc;
}
.article-link {
	color: #0400fc;
	border-bottom: 2px solid transparent;
	text-decoration: none;
}
.article-link-hover-icon {
	width: 20px;
	height: 20px;
	margin-left: 5px;
	opacity: 0;
	stroke: #0400fc;
	transition: opacity .166s ease-out;
}
.article-link:hover {
	border-bottom: 2px solid #c5d2d9;
}
.article-link[target="_blank"]:hover+.article-link-hover-icon {
	opacity: 1;
}

h1,h2,h3,h4,h5,h6 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: var(--heading-color);
}

.alert.alert-success {
	background: rgba(4, 0, 252, 0.066);
	color: #0400fc;
	border: 2px solid rgba(4, 0, 252, 0.33);
	border-radius: 10px;
	font-size: 16px;
}

input.form-control {
	color: var(--text-color);
	border: none;
	background: var(--surface-color);
	padding: 15px 65px 15px 15px;
	border-radius: 15px;
}
input.form-control:focus {
	color: var(--text-color);
	background: var(--surface-color);
}
input.form-control::placeholder {
	color: var(--muted-color);
}
.btn.btn-primary {
	background: #0400fc;
}
.btn-inline-submit {
	position: absolute;
	right: 18px;
	top: 5px;
	bottom: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 10px;
	border-radius: 10px;
	opacity: 0.66;
	border: none;
	outline: none;
	padding: 0 15px;
	transition: opacity .166s ease-out;
}
.btn-inline-submit:hover {
	opacity: 1;
}

.article-detail {
	font-size: 20px;
	line-height: 28px;
}
.article-detail {
	blockquote, dl, ol, p, ul, hr {
		margin-bottom: 1.5em;
	}
}
.article-detail>header>.meta {
	font-size: 16px;
	color: var(--muted-color);
}
.article-detail a:not([class*="ww-fireworks"]) {
	color: inherit;
	border-bottom: 2px solid var(--subtle-border-color);
	text-decoration: none;
	transition: border-color .166s ease-out;
}
.article-detail a:not([class*="ww-fireworks"]):hover {
	border-bottom: 2px solid #0400fc;
}
.article-detail iframe a {
	text-decoration: none;
}
.article-detail hr {
	border-top: 2px solid var(--subtle-border-color);
	opacity: 1;
}
.article-detail blockquote {
	border-left: 3px solid var(--subtle-border-color);
	padding: 0 1.5em;
}
.article-detail img {
	max-width: 100%;
}
.article-detail pre {
	color: #0400FC;
	background: rgba(4,0,252,0.066);
	padding: 0.5em 1em;
	border-radius: 10px;
}
.article-detail p>code {
	background: rgba(4,0,252,0.066);
	color: #0400fc;
	border-radius: 5px;
	padding: 0.25em 0.25em;
}
.article-end-nav {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 1.5rem;
	margin-top: 5rem;
}

.footer-container {
	margin-top: 2em;
	margin-bottom: 1em;
}
.footer-text {
	font-size: 13px;
	line-height: 1.2rem;
	color: var(--muted-color);
}
