:root {
	--page-bg-color: slategrey;
	--page-text-color: #E9F2EA;
	--title-color: #7f7179;
	--title-shadow-color: #666688;
	--title-bg-color: transparent;
	--boxhdr-shadow-color: #ee1111;
	--content-bg-color: #040b15;
	--content-border-color: #849EC4;
	--aside-title-color: #b2a3b5;
	--aside-border-color: #849EC4;
	--aside-background-color: #000205;
	--link-color: #63bdf2;
	--link-visited-color: #7FC394;
	--nav-button-bg-color: #7f7179;
	--nav-button-text-color: #ebdccb;
	--accent-color: #e36518;
	--content-width: 95%;
	--main-flex-basis: 60%;
	--col-flex-basis: 7%;
	--hr-width: 2px;
	--hr-color: black;
	--hr-style: solid;
	--body-line-height: 1.2;
	--body-font-size: 14px;
	--header-font-size: 1.7rem;
	--title-font-size: 2.2em;
	--nav-separator: " ❄︎ ";
	--noscroll-topbottom: 10vh;
	--noscroll-height: 80%;
	--bg-image: url("https://cdn.architextures.org/textures/23/5/medallion-stripe-wallpaper-none-0dbjmk-1200.jpg");
	--bg-image-repeat: repeat;
	--bg-image-size: 24em;
	--bg-image-position: 0 0;
	--bg-image-scroll: scroll;
	--content-border-style: solid;
	--content-border-radius: 0;
	--content-border-width: 2px;
	--aside-border-style: solid;
	--aside-border-radius: 0;
	--aside-border-width: 2px;
	--block-border-style: none;
	--block-border-radius: 0;
	--block-border-width: 1px;
	--block-margin-bottom: 0px;
	--col-header-margin: 0.65em;
	--title-shadow-x: 0.2em;
	--title-shadow-y: 0.2em;
	--title-shadow-blur: 0.2em;
	--boxhdr-shadow-x: 0.2em;
	--boxhdr-shadow-y: 0.2em;
	--boxhdr-shadow-blur: 0.2em;
	--boxhdr-shadow-spread: 0;
	--boxhdr-radius: 0;
	--boxhdr-shadow-rotate: 0;
}

body {
	background-color: var(--page-bg-color);
	color: var(--page-text-color);
	font-family: Verdana, sans-serif;
	line-height: var(--body-line-height);
	font-size: var(--body-font-size);
	letter-spacing: 0.042em;
	background-image: var(--bg-image);
	background-repeat: var(--bg-image-repeat);
	background-size: var(--bg-image-size);
	background-position: var(--bg-image-position);
	background-attachment: var(--bg-image-scroll);
	background-blend-mode: multiply;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Verdana, monospace;
	letter-spacing: 0.03em;
	background-color: var(--title-bg-color);
	color: var(--title-color);
	position: relative;
	z-index: 1;
}

h2,
h3,
h4,
h5,
h6 {
	padding: 0 3px 0 4px;
	line-height:1rem;
}

aside h2::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: var(--boxhdr-radius);
	rotate: var(--boxhdr-shadow-rotate);
}

h1 {
	text-align: center;
	font-size: var(--title-font-size);
	line-height:1.2rem;
}

h2 {
	font-size: 20px;
}

p {
  text-indent: 16px;
}

ul {
  list-style-position: inside;
  padding-left: 10px;
  padding-top: 1px;
  margin-bottom: -10px;
}

a {
	color: #7FC394;
  text-decoration: underline 2px dotted #336483;
}

a:visited, a:hover {
	color: #63bdf2;
  text-decoration: underline 2px dotted #29516C;
}

header {
	text-align: center;
	padding-bottom: 0.5em;
}

main {
	background-color: var(--content-bg-color);
	border: 1px solid #8299AC;
	line-height:1.3rem;
}
main p {
	margin-left:12px;
	margin-right:12px;
}

section {
	background-color: var(--content-bg-color);
	margin-bottom: 1em;
	padding: 0.5em;
	overflow: auto;
	border-color: var(--content-border-color);
	border-width: var(--content-border-width);
	border-radius: var(--content-border-radius);
}

section img {
	max-width: 200px;
	float: left;
	display: block;
	margin-right: 1em;
}

.dropCap p:first-of-type::first-letter {
	font-size: 3em;
	font-weight: bold;
	float: left;
	margin-right: 0.3em;
	padding: 0.3em;
	border: 1px solid var(--nav-button-text-color);
	background-color: var(--accent-color);
	color: var(--content-bg-color);
	text-transform: uppercase;
}

nav#topmenu {
	text-align: center;
	position: static;
	z-index: 10;
	padding:10px;
}

nav#topmenu ul {
	padding: 0px;
	margin: 0px;
}

nav#topmenu ul li {
	list-style-type: none;
	display: inline;
	padding: 0px;
	margin: 0px;
}

nav#topmenu li a {
	text-decoration: underline dotted;
}

nav#topmenu ul li::before {
	content: var(--nav-separator);
}

nav#topmenu ul li:first-child::before {
	content: "";
}


div.flex_container {
	display: flex;
	flex-flow: wrap;
	max-width: var(--content-width);
	margin-left: auto;
	margin-right: auto;
}

.flex_container main {
	order: 2;
	flex-grow: 5;
	flex-basis: var(--main-flex-basis);
	padding: 4px;
}

.flex_container p {
	padding: 7px 7px 0;
}

.flex_container aside#sidebar1 {
	order: 1;
	flex-grow: 1;
	flex-basis: var(--col-flex-basis);
}

.flex_container aside#sidebar2 {
	order: 3;
	flex-grow: 1;
	flex-basis: var(--col-flex-basis);
}

aside#sidebar1 {
	margin-right: 0.4em;
}

aside#sidebar2 {
	margin-left: 0.2em;
}

aside#sidebar1,
aside#sidebar2 {
	padding: 0px;
	border: 1px solid #8299AC;
	background-color: #000205;
}

.sidebarBlock {
	background-color: #000205;
	padding: 8px;
	line-height:1.25rem;
}

.sidebarBlock h2 {
  font-size: 1.25rem;
	color: var(--aside-title-color);
	margin-top: var(--col-header-margin);
	margin-bottom: var(--col-header-margin);
	padding: 0 0 0 3px;
	line-height:1.39rem;
}

.results-flex {
	display: flex;
	flex-wrap: wrap;
	width: 98%;
	margin-left:5px;
	margin-right:5px;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction:row;
}

.quiz {
	max-width: 40rem;
	height: auto;
	padding: 4px;
	align-self: flex-start;
	display: block;
	font-size: 0.3rem;
	text-align: center;
	margin:auto;
	justify-content:space-between;
	
}

.quiz a {
	font-size: 1.1rem;
	font-weight: bold;
	vertical-align: baseline;
	margin:32px 11px 32px 11px;
  line-height:28px;
}

.quiz p {
	font-size: 14px;
	vertical-align: middle;
}

.quiz img {
  max-width:100%;
	border: 3px ridge #849EC4;
	padding: 5px;
	background-color: #202B3B;
	text-align: center;
	margin:auto;
}

.capq {
	max-width:100%;
	border: 2px ridge #849EC4;
	background-color: #202B3B;
	margin:auto;
  padding-top:10px;
  padding-bottom:8px;
	text-align: center;
}
.capq a {
  text-decoration: underline 2px dotted #518AB1;
  line-height:normal;
}

.capq b2 {
  font-weight:600;
  font-size:12px;
  color:#7FC394;
  filter: drop-shadow(1px 1px 1px #518AB1);
}
.capq p {
  text-decoration: underline 2px dotted #518AB1;
  line-height:16px;
  margin:0 8px 8px 8px;
	text-align: justify;
  text-justify: inter-character;
}
.capq b3 {
  font-weight:800;
  font-size:14px;
  color:#518AB1;
}

.capc {
  font-weight:400;
	font-size: 10px;
	text-align: left;
	text-indent:16px;
	line-height:1.2em;
}

.capj {
  font-weight:400;
	font-size: 12.8px;
	text-align: left;
	text-indent:16px;
	line-height:1.5em;
}






@media screen and (max-width: 35em) {
	main {
		order: 1;
	}
}

div#gal_flex {
	display: flex;
	flex-wrap: wrap;
	margin-left: auto;
	margin-right: auto;
}

div.gallery {
	margin: 5px;
	border: 1px solid var(--aside-border-color);
	width: 160px;
	position: relative;
}

div.gallery:hover {
	border: 1px solid var(--aside-title-color);
}

div.gallery h2 {
	text-align: center;
}

div.gallery img {
	max-width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}

#noscroll-body {
	margin-left: auto;
	margin-right: auto;
	margin-top: var(--noscroll-topbottom);
	margin-bottom: var(--noscroll-topbottom);
	height: var(--noscroll-height);
	padding: 1em;
	display: grid;
	grid-template-rows: min-content min-content 1fr min-content;
	border-color: var(--content-border-color);
	border-width: var(--content-border-width);
	border-radius: var(--content-border-radius);
}

#noscroll-body .flex_container {
	height: 100%;
	overflow: hidden;
}

#noscroll-body main,
#noscroll-body aside {
	padding: 3px;
	height: 100%;
	overflow: auto;
}

hr {
	border-top-width: var(--hr-width);
	border-color: var(--hr-color);
	border-style: var(--hr-style);
}

footer {
	text-align: center;
	background: linear-gradient(360deg,rgba(3, 22, 15, 0) 0%, rgba(3, 22, 15, 0.7) 45%, rgba(0, 0, 0, 0.8) 89%);
	height:4.5em;
	margin-bottom:10px;
}

footer p {
	line-height:1.1em;
	padding:0;
}










