/*Fic 2 CSS*/


/*Fonts*/

@font-face {
    font-family: "Scaly Sans";
    src:
        local("Scaly Sans"),
        url('./Scaly Sans/Scaly Sans.otf'),
        url("https://raw.githubusercontent.com/jonathonf/solbera-dnd-fonts/master/Scaly%20Sans/Scaly%20Sans.otf") format("opentype");
}

@font-face {
    font-family: 'Jost';
    src: url('/fonts/jost-variable.woff2') format('woff2'),
         url('/fonts/jost-variable.woff') format('woff');
}

/*Disables select and therefore copy-paste
body {
  -webkit-user-select: none; /* Safari *
  -ms-user-select: none; /* IE 10 and IE 11 *
  user-select: none; /* Standard syntax *
}    */

/*you must still include the footer on every page here is the copypaste: All literary content © Benjamin Jas. Drago 2023. No reproduction or distribution of this work for any reason is permitted.*/

/*footer is where the copyright info is*/

footer {
  position: relative;
  display:block;
  background-color: transparent;
  color: #888;
  text-align: center;
  font-family:verdana, sans-serif;
  font-size:.5em;
  column-span:all;
  margin:auto!important;
  width:100%;
}

/*The rest of body styling*/

body {
	background: #aaa;
	color: #040005;
	font-family: 'Jost', sans-serif;
	font-size: 1.2em;
	width: 80%;
    margin:auto;
	padding-top: 50px;
	padding-bottom: 50px;
}

p {
	display: block;
	margin-top: 0em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-right: 0;
}

i, em {
	font-style:italic;
	color: #000;
}

b, strong {
	font-weight:900;
	color: #000;
}

a:link, a:visited {
  color: #000;
	text-decoration: underline;
	cursor: pointer;
  display: inline-block;
}

a:hover, a:active {
	text-shadow: 0 0 5px #FFf, 0 0 10px #fef;
    color:#fff;
}

hr {
	width:1%;
	border: 3px solid #aaa;
	border-radius:0px;
	margin: 50px auto 50px auto;
	text-align:center;
  }
  
  /* <ol class="letter"> */
ol.letter {
	list-style-type: lower-alpha;
}

h1, h2, h3, h4, h5, h6 {
	text-align:center;
	font-variant:small-caps;
	color: #000;
	font-weight:bold;
	margin: 0px 0px 25px 0px;
	border:none;
	padding-bottom:5px;
	display:block;
	column-span:all;
}
	
h1 {
	font-size: 2em;
	}
	
h2 {
	font-size: 1.8em;
}

h3 {
	font-size: 1.6em;
}

h4 {
	font-size: 1.4em;
}

h5 {
	font-size: 1.25em;
}

h6 {
	font-size: 1.10em;
}

blockquote,
blockquote.ol,
blockquote.ul {
  background: rgba(255,255,255,0.25);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-left: 1px solid rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.05);
  border-bottom: 3px dashed rgba(170,170,170,1);
  margin-left: 15%;
  margin-right: 15%;
  padding: 10px;
}


/*Drop Cap must have <span class="drop"> </span> around the first letter
.drop {
	display:block;
	float: left;
	width: auto;
	height: 1em;
	font-size: 8em;
	font-family: 'Goudy Initialen', script;
	line-height: 1em;
    background:none;
	margin:-10px 1px 1px 0px;
	color: #051B05;
	text-align:center;
}*/


/*this is a div class="footnotes"
.footnotes {
	font-size: 75%;
	border-top: 1px solid #0d0011;
	padding-top:15px;
	font-family: 'Scaly Sans', verdana, sans-serif;
}*/

