/*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: 'CAT Childs';
    src: url('/fonts/catchilds-webfont.woff2') format('woff2'),
         url('/fonts/catchilds-webfont.woff') format('woff');
}

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

@font-face {
  font-family: 'Typewriter';
  src: url('https://thesiat.com/fonts/IM-Fell-DW-Pica-Pro-Regular.woff') format('woff');
}

@font-face {
  font-family: 'Typewriter Italic';
  src: url('https://thesiat.com/fonts/IM-Fell-DW-Pica-Pro-Italic.woff') format('woff');
}

@font-face {
  font-family: 'Governess';
  src: url('https://thesiat.com/fonts/Ballet.woff') format('woff'),
       url('https://thesiat.com/fonts/Ballet.woff2') format('woff2');
}

@font-face {
  font-family: 'Victorian Decade';
  src: url('https://thesiat.com/fonts/victorian-decade.woff') format('woff'),
       url('https://thesiat.com/fonts/victorian-decade.woff2') format('woff2');
}


/*you must still include the footer on every page here is the copypaste: All literary content © B. J. 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: #48110F;
  text-align: center;
  font-family:'Typewriter Italic', serif;
  font-size:.5em;
  column-span:all;
  margin:auto!important;
  width:100%;
}

/*The rest of body styling*/

body {
	background: #cba /*url('/media/pix/backgrounds/GMBinder_page.jpg')*/;
	color: #040005;
	font-family: 'Typewriter', serif;
  font-size: 1.35em;
	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-family: 'Typewriter Italic', serif;
	font-style:normal;
	color: #000;
}

b, strong {
  font-family: 'Typewriter Italic', serif;
	font-weight:900;
	color: inherit;
}

u {
  text-decoration: underline solid 2px #103; 
}

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

a:hover, a:active {
	text-shadow: 0 0 5px #F00, 0 0 10px #600;
    color:#a00;
}

hr {
	margin: 2em auto;
  width:0;
	border: 8px solid transparent;
	text-align:center;
	border-image: url(https://images.squidge.org/images/2023/11/06/black-32-heart-for-HR.png) 50% 16 round;
  }
  
  
  /* <ol class="letter"> */
ol:letter {
	list-style-type: lower-alpha;
}

h1, h2, h3, h4, h5, h6 {
	font-variant:small-caps;
	color: #000;
	font-weight:bold;
	margin: 0px 0px 25px 0px;
	border:none;
	padding-bottom:5px;
	display:block;
	column-span:all;
	font-family: 'CAT Childs';
}
	
h1 {
  text-align:center;
	font-size: 3em;
	text-shadow: 0 1px 2px #f00, 0 0 5px #a00, 0 0 10px #600;
	}
	
/* The chapter subtitles */
h2 {
  text-align:center;
	font-size: 2.5em;
	text-shadow: 0 1px 2px #f00, 0 0 5px #a00, 0 0 10px #600;
}

h3 {
	font-size: 2em;
}

h4 {
	font-size: 1.75em;
}

/* Chapter Titles on Index Page */
h5 {
  text-align:left;
	font-size: 1.35em;
	margin-bottom: 0;
	padding-bottom:0;
}

/* The nav links back/home/next */
h6 {
	font-size: 1.25em;
	text-align:center;
}

/* The letters */

blockquote {
  background: url('/media/pix/backgrounds/phb_bg.jpg');
  margin-left: 15%;
  margin-right: 15%;
  padding: 30px;
  font-family: 'Typewriter Italic', serif;
  font-size:1em;
  color: #103;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.7), 0 6px 20px 0 rgba(0, 0, 0, 0.4); 
}

/* these are a div (multiple paragraphs) or span (one line) class */

.signature {
  font-family: 'Governess', cursive;
  font-size: 2em;
  color: #103;
}

/*Drop Cap must have <span class="drop"> </span> around the first letter*/

.drop {
	display:block;
	float: left;
	width: auto;
	height: 1.1em;
	font-size: 5.9em;
	font-family: 'Victorian Decade', script;
	line-height: 1em;
  background:transparent;
  text-shadow: 1px 1px 0px #000;
	margin: 3px 3px 3px 0px;
	padding: 3px;
	color: #601;
	text-align:center;
}


/* This has to do with the columns */

* {
  box-sizing: border-box;
}

/* Create equal columns that float next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}