body, div, main, section, article {
  box-sizing: border-box; 
  
}

/* universal background color */
body {
  
  background-image:url(https://thespacollective.org/img/creatures/bg_test1.jpg);
  background-color:#E3DF9A;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
 background-size: cover;
 background-blend-mode: multiply;
 
}

/* header image */
header img {
  width: 700px;
  max-width: 98%;
}

/* HEADER */
header #nav {
  text-decoration:none;
  font-family:"New Rocker", serif;
  font-size: 40px;
  width: 98%;
  display: fixed;
  margin: auto;
}

header a {
  font-family:"New Rocker", serif;
  display: fixed;
  width: 98%;
  margin: auto;}

/* clearfix hack to prevent image overflow. check out the W3Schools page on it. */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}


/*FONTS*/
.silkscreen-regular {
  font-family: "Silkscreen", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.silkscreen-bold {
  font-family: "Silkscreen", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.elms-sans-normie {
  font-family: "Elms Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.explora-regular {
  font-family: "Explora", serif;
  font-weight: 400;
  font-style: normal;
}
.playfair-display-sc-regular {
  font-family: "Playfair Display SC", serif;
  font-weight: 400;
  font-style: normal;
}

.playfair-display-sc-bold {
  font-family: "Playfair Display SC", serif;
  font-weight: 700;
  font-style: normal;
}

.playfair-display-sc-black {
  font-family: "Playfair Display SC", serif;
  font-weight: 900;
  font-style: normal;
}

.playfair-display-sc-regular-italic {
  font-family: "Playfair Display SC", serif;
  font-weight: 400;
  font-style: italic;
}

.playfair-display-sc-bold-italic {
  font-family: "Playfair Display SC", serif;
  font-weight: 700;
  font-style: italic;
}

.playfair-display-sc-black-italic {
  font-family: "Playfair Display SC", serif;
  font-weight: 900;
  font-style: italic;
}
.moon-dance-regular {
  font-family: "Moon Dance", cursive;
  font-weight: 400;
  font-style: normal;
}
.new-rocker-regular {
  font-family: "New Rocker", system-ui;
  font-weight: 400;
  font-style: normal;
}


/* header font */
#showComic, h1, h2, h3 {
  font-family: "New Rocker", system-ui;
  font-size:30px;
  color: #324403;
  text-shadow: rgba(196,255,0,1) 0px 0px 10px;
  
}

/* body font */
.subPage p, h4, h5, footer, #authorNotes, .archiveTable {
   font-family: "New Rocker", system-ui;
  font-size: 20px;
  color: black;
}
.subPage ul {
  font-family: "New Rocker", system-ui;
  font-size: 20px;
  font-style: normal;
  color: #5C5919;
}

.glow {
  font-size: 80px;
  color: #324403;
  text-align: center;
  animation: glow 3s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #7AA15A, 0 0 20px #fff, 0 0 30px #CBE600, 0 0 40px #CFE600, 0 0 50px #DBE600, 0 0 60px #00E617, 0 0 70px #B0E600;
  }
  
  to {
    text-shadow: 0 0 20px #7AA15A, 0 0 30px ##357500, 0 0 40px #357500, 0 0 50px #357500, 0 0 60px #357500, 0 0 70px #357500, 0 0 80px #357500;
  }
}

/*general*/

* {
  box-sizing: border-box;
}

.row {
  display: flex;
}

/* Create two equal columns that sits next to each other */
.column {
  padding: 10px;
  flex: 1;
}

.subPage {
  width: 1100px;
  max-width: 98%;
  padding: 10px;
  border-radius:20px;
  margin: auto;
  box-shadow: 1px 1px 150px #000;
  background-color: rgba(70, 92, 25, .5);
}

  
.subPage:not(.archivePage) {
  text-align: justify;
  padding:10px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* for pictures displayed to the left */
.leftPic {
  clear: left;
  float:right;
  margin-left:20px;
}

/* for pictures displayed to the left */
.rightPic {
  clear: right;
  float:left;
  margin-right:20px;
}

/* specific to Characters */
.charTable, .charTable td { 
  width: 100%;
}

/* link colors */
a {
  font-family:"New Rocker"; 
  color: black;
  text-decoration: none;
    }

a:hover {
      color:#CBE600;
    }
    
/* image swap on hover */
  .figure {
    position: relative;
    max-width: 98%;
  }
  .figure img.Sirv.image-hover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    object-fit: contain;
    opacity: 0;
    transition: opacity .2s;
  }
  .figure:hover img.Sirv.image-hover {
    opacity: 1;
  }
