body, html {
	background-color: #0d0d0d;
	background-size: auto;
}

          /* loader */
.loaderbg {
  display:flex;
  position:fixed;
  align-items:center;
  justify-content:center;
  z-index:+1;
  box-sizing: border-box;
  margin:0;
  padding:0;
  left:0;
  right:0;
  bottom:0;
  top:0;
  background-color: #0d0d0d;
  transition: opacity 1.0s ease-in-out;
}
.loader {
  display: flex;
  align-items: center;
  margin:auto;
  gap: 8px;
  height: 91px;
  background-color: #0d0d0d;
}
.loader span {
  width: 15px;
  height: 100%;
  background: #ce8a21;
  border-radius: 8px;
  animation: grow 1.5s ease-in-out infinite;
}
.loader span:nth-child(2) { animation-delay: 0.19s; }
.loader span:nth-child(3) { animation-delay: 0.38s; }
.loader span:nth-child(4) { animation-delay: 0.56s; }
@keyframes grow {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

					/* container */
.content{
	display: none;
	justify-content: center;
	padding: 20px;
	word-wrap: break-word;
	
}
.content a{
	color: #A35231;
	text-decoration: none;
	transition: color 0.3s ease-in-out;
}
.content a:hover{
	color: #A38A31 ;
}


					/* about stuff */
.about-column {
	position: fixed;
	margin: 0 1160px 0 0;
}
.about-panel {
	text-align: center;
	max-width: 250px;
	background-color: #353E39;
	display:flex;
	align-content: space-around;
	flex-direction: column;
}
.about-panel img{
	max-width: 100%;
	margin: auto;
}
.about-panel h1{
	font-family: georgia-tabular;
	color: #ce8a21;
	letter-spacing: 0;
	font-size: 26px;
}
.about-text {
	align-content: center;
	justify-content: center;
	display:flex;
	flex-direction: column;
}
.about-text p{
	display:flex;
	justify-content: space-evenly;
	font-family: georgia-tabular;
	padding-bottom:20px;
	font-weight: 600;
	letter-spacing: 0.5px;
	font-size: 19px;
}

					/* body */
.mainbody {
	margin: auto;
	padding: 0 40px 40px 40px;
	width: 800px;
	background-color: #353E39;
	margin-bottom: 20px;
	position:relative;
}
.txt h1, h2, h3, h4{
	font-family: georgia-tabular;
	text-indent: 0;
	color: #ce8a21;
        	/* padding-top:20px; */
	font-weight: 600;
	letter-spacing: 0.5px;
	margin-top:30px;
	margin-bottom:0;
}
.txt h1{font-size: 40px;}
.txt h2{font-size: 35px;}
.txt h3{font-size: 30px;}
.txt h4{font-size: 25px;}
.txt p{
	text-indent: 30px;
	font-size: 20px;
	line-height: 150%;
	font-family: "Poppins", sans-serif;
	color:#dddddd;
	margin-top:20px;
	margin-bottom:0;
}
.txt table{
	text-indent: 30px;
	font-size: 20px;
	line-height: 150%;
	margin-left: 20px;
	margin-right: 20px;
	font-family: Sans-Serif;
	text-align: right;
	color:#dddddd;
	max-width:100%;
}
.txt li{  				/* you havent fine-tuned this */
	font-size: 16px;
	line-height: 150%;
	font-family: Sans-Serif;
}
.txt sup{
	line-height: 0;
	font-size: 75%;
	vertical-align: super;
}
.txt img{
	margin: auto;
	line-height: 0;
	width: auto;
	max-width:100%
}

.txt .publish-info p{
	font-size:90%;
	color:#777777;
	margin:0;
}


							/* table of contents */
.toc {
	line-height: 100%;
}
.toc h1{
	text-indent: 20px;
	font-size: 30px;
}
.toc h2{
	text-indent: 30px;
	font-size: 25px;
}
.toc h3{
	text-indent: 40px;
	font-size: 20px;
}
.toc h4{
	text-indent: 50px;
	font-size: 15px;
}

							/* footnotes */
.fn {
	display:flex;
	justify-content: flex-start;
	align-content: center;
	font-size:90%;
	overflow:auto;
	width:auto;
	margin-left: -100px;
	margin-bottom: 10px;
}
.fn p{
	margin:0;
	padding:0;
	text-indent: 0;
}
.fnnum{
	text-align: right;
	padding-right:10px;
	width:100px;
}
.fnnum p{
	font-size:15px;
	text-indent: 0;
}
.fntxt{
	width: 100%;
}
.fntxt p{
	text-indent: 15px;
}


									/* adjust for width*/
@media only screen and (max-width: 1499px) {
	.content {
		align-content: center;
		justify-content: center;
		flex-direction: column;
	}
	.about-column {
		margin: 20px auto;
		position:relative;
		max-width: 100%;
	}
	.about-panel{
		display:flex;
		align-content: space-around;
		max-width: 880px;
		flex-direction: row;
	}
	.about-panel img{  /* if the width of this panel breaks check if the image is too small */
		max-width: 60%;
	}
	.about-text {
		align-content: center;
		justify-content: center;
		display:flex;
		flex-direction: column;
	}
	.about-text h1{
		text-align:center;
		font-size: 37.55px;
	}
	.about-text p{
	  font-size:28.2px;	  
		line-height: 0;
	}
	.mainbody{
		position:relative;
		margin: auto;
	}
}
								/* mobile width */
@media only screen and (max-width: 939px) {
	.content{
		padding:1vw;
	}
	.about-panel h1{
		font-size: 4vw;
	}
	.about-panel p{
		font-size: 3vw;
	}
	.txt h1{font-size: 6vw;}
	.txt h2{font-size: 5.5vw}
	.txt h3{font-size: 5vw}
	.txt h4{font-size: 4.5vw}
	.txt p{
		font-size: 4vw;
		text-indent: 3vw;
	}
	.fn {
		display:flex;
		overflow:visible;
		margin-left:unset;
		margin-bottom:4vw;
	}
	.fn p{
		margin:0;
	}
	.fnnum{
		text-align: right;
		margin: 0vw 0vw 0vw -6vw;
		width:8vw;
	}
	.fnnum p{
		font-size:2.5vw;
		margin:0
	}
	.fntxt{
		width: 100%;
	}
	.fntxt p{
		font-size:3.5vw;
		margin:0
	}
	.mainbody{
	  padding:3vw;
		margin:0;
		max-width:95vw;
		width:auto;
	}
	.txt table{
		text-indent: 0;
		font-size: 4vw;
		line-height: 150%;
		margin-left: 1vw;
		margin-right: 1vw;
		font-family: Sans-Serif;
		text-align: center;
		color:#dddddd;
		max-width:100%;
	}
}

							/* misc */
.noheight{
	line-height: 0;
}
.center{
	display: block;
  	margin-left: auto;
  	margin-right: auto;
}
.nobr{
	white-space: nowrap;
}
::selection {
    background-color: #8C1B24;
    color: #ffffff;
}


/* serif tabular numbers for georgia on macOS, windows */
@font-face {
  font-family: "tabular-numbers";
  src: local("charter"), local("cambria");
  unicode-range: U+0030-0039;
}
font-family:
  /* 1 */ tabular-numbers,   /* tabular numbers for Windows, macOS, iOS */
  /* 2 */ georgia,           /* windows, macOS, iOS */
  /* 3 */ bitstream charter, /* debian & ubuntu */
  /* 4 */ caladea,           /* fedora */
  /* 5 */ serif;             /* everything else */

.georgia {
  font-family: georgia, serif;
}
@font-face {
  font-family: "tabular-numbers";
  src: local("charter"), local("cambria");
  unicode-range: U+0030-0039;
}
.georgia-tabular {
  font-family: "tabular-numbers", georgia, bitstream charter, serif;
}
.charter {
  font-family: charter, bitstream charter, "tabular-numbers", georgia, serif;
}
.cambria {
  font-family: cambria, charter, bitstream charter, "tabular-numbers", georgia, serif;
}
/* from https://www.client9.com/css-georgia-font-stack-with-tabular-numbers/ */

