/* start light mode styling */
	:root {
		--text: darkslategrey;
		--border: lightgrey;
		--accent: teal;
		--bg: rgba(0, 80, 80, 1);
		--gradientTop: rgba(0, 160, 160, 1);
		--gradientBottom: rgba(0, 16, 16, .8);
        --body-font: "Helvetica Neue", "Nimbus Sans L", sans-serif;
        --clr-border-inset: #ebebeb;
        --gradientBG: linear-gradient(
            to bottom right,
            rgba(0, 160, 160, 1) 0%,
            rgba(0, 80, 80, 1) 50%,
            rgba(0, 16, 16, 1) 100%);
	}
	header {
		background: url('***light mode banner image***');
	}
/* end light mode styling */



* { 
	box-sizing: border-box;
}
html, body {
    font-size: 20px;
    height: 99%;
}

body {
	padding: 10px;
	font-family: var(--body-font);
    font-weight: 400;
    letter-spacing: -0.00000005em;
	color: #fcfcfc;
    text-shadow: 2px 2px 0px black;
    min-height: 99%;
}

.container {
	--max-width: 64em;
	margin: auto auto 12px auto;
    border: 6px var(--clr-border-inset);
  border-style: groove ridge ridge groove;
  border-radius: 36px 12px 12px 12px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;

	/* container background pattern */
	background-color: #000000;
}
/* these control the column widths */
.small { flex: 1 1 19%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 39%; }
.third { flex: 1 1 33%; }


header {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 120px; /* change banner height here*/
	position: relative;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow: 1px 1px var(--text),
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
	color: var(--gradientTop);
}


nav {
	background: var(--gradientBG);
  border: 6px var(--clr-border-inset);
  border-style: groove ridge ridge groove;
  border-radius: 36px 12px 12px 12px;
	padding: 5px;
	background: var(--gradientBG);
    height: calc(100dvh - 200px);
    overflow-y: scroll;
}
nav div {
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
    font-size: 1rem;
	background: linear-gradient(to right,var(--bg),var(--gradientBottom));
	border-radius: 5px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link, a:visited { 
	color: #e5e647;
}
nav a:hover, nav a:focus {
    font-weight: bold;
	background: linear-gradient(to right,var(--bg), var(--gradientBottom), var(--gradientTop));
}


div.main {
    width: auto;
}

div.dat {
    display: none;
}
div.dat:target {
    display: block;
}

.active {
    font-weight: bold;
    background: linear-gradient(to right,var(--bg), var(--gradientBottom), var(--gradientTop));
}
.content {
    padding-left: 20px;
    display: none;
}

section {
	padding: 5px;
}

iframe {
	background: var(--gradientBG);
  border: 6px var(--clr-border-inset);
  border-style: groove ridge ridge groove;
  border-radius: 36px 12px 12px 12px;
	padding: 5px;
}

iframe::before {
    content: "";
    border: 4px solid #e2e2e2;
    border-style: groove ridge ridge groove;
    border-radius: 1px;
    background: #d8d8d8;
    width: 12px;
    height: 12px;
    top: 0;
    left: 0;
  }

footer {
	text-align: center;
	margin-bottom: auto;
	font-size: 0.8rem;
}
footer a { 
	text-decoration: none;
}


h1, h2, h3, h4, h5, h6, p  { 
	margin: 5px;
	line-height: 1.2;
}
h1 { 
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px ridge var(--border);
	padding-bottom: 5px;
}
h2 { 
	font-size: 1.25rem;
	font-weight: bold;
	text-align: center;
}
h3 { 
	font-size: 1.1rem;
}
h4 { 
	font-size: 1rem;
	color: var(--accent);
	padding-left: 12px;
}

hr {
	border: 1px solid rgba(0, 80, 80, 1);
	margin: 20px 0 20px 0;
}

.speaker {
    color: #e5e647 !important;
}
.races {
    color: #93f096 !important;
}
.people {
    color: #99f8f8 !important;
}
.places {
    color: #fb9f9c !important;
}
.misc {
    color: #edbbf3 !important;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }


a:hover, a:focus {
	font-style: italic;
}