/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
  HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
html {
  background: #000000;
}

body, div, main, section, article {
  box-sizing: border-box; 
}

/* universal background color */
body {
  background: #251861;
  background: -moz-linear-gradient(top, #251861 200px, #733EA7 600px, #9940AE 1000px, #DF689E 1400px, #F5D2B8 1800px);
  background: -webkit-linear-gradient(top, #251861 200px, #733EA7 600px, #9940AE 1000px, #DF689E 1400px, #F5D2B8 1800px);
  background: linear-gradient(to bottom, #251861 200px, #733EA7 600px, #9940AE 1000px, #DF689E 1400px, #F5D2B8 1800px);
}

/*Harlow Full is for text blocks, Harlow Caps is for titles, buttons, etc */
@font-face {
  font-family: HarlowFull;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowFull-Regular.ttf") format("truetype");
}
@font-face {
  font-family: HarlowFull;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowFull-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: HarlowFull;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowFull-Italic.ttf") format("truetype");
  font-style: italic;
}
@font-face {
  font-family: HarlowFull;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowFull-BoldItalic.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: HarlowCaps;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowCaps-Regular.ttf") format("truetype");
}
@font-face {
  font-family: HarlowCaps;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowCaps-Bold.ttf") format("truetype");
  font-weight: bold;
}
@font-face {
  font-family: HarlowCaps;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowFull-Italic.ttf") format("truetype");
  font-style: italic;
}
@font-face {
  font-family: HarlowCaps;
  src: url("https://lizheartandtheraven.neocities.org/site%20assets/HarlowCaps-Regular.ttf") format("truetype");
  font-weight: bold;
  font-style: italic;
}

.skyscrapersimg {
  width: 100vw;
  position: absolute;
  top: 100px;
  z-index: 1;
  left: 0;
  bottom: 0;
  margin: 0 auto;
}

.citystars {
  width: 100vw;
  position: absolute;
  z-index: 0;
  margin-top: 0;
  
}

/* header image */
.logo {
  width: 400px;
  max-width: 70%;
  z-index: 10;
  position: relative;
  margin-top: 30px;
  margin-bottom: 10px;
}

.headerbutton {
  height: 70px;
  max-height: 10vh;
  margin: 10px;
}

/* clearfix hack to prevent image overflow. check out the W3Schools page on it. */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*FONTS*/

/* header font */
#showComic, header, h1, h2, h3, h4, h5 {
  font-family: 'HarlowCaps';
  z-index: 15;
  position: relative
}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'HarlowFull';
  font-size: 15pt;
  z-index: 10;
  position: relative;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.subPage {
  width: 900px;
  max-width: 70%;
  background-color: #ffffff;
  outline: 3px solid #100524;
  margin: auto;
  margin-bottom: 100px;
  padding: 12px 12px 12px;
  -webkit-box-shadow: 10px 10px 0px 0px #100524; 
  box-shadow: 10px 10px 0px 0px #100524;
  z-index: 10;
  position: relative
}

.subPage:not(.archivePage) {
  text-align: center;
  
}

/* for pictures displayed to the left */
.leftPic {
  clear: left;
  float:right;
  margin-left:20px;
  z-index: 10;
  position: relative
}

/* for pictures displayed to the left */
.rightPic {
  clear: right;
  float:left;
  margin-left:20px;
  z-index: 10;
  position: relative
}


/* specific to Characters */
.charTable, .charTable td { 
  width: 100%;
  z-index: 10;
  position: relative
}

/* link colors */
a {
      color: #ff47da;
      z-index: 10;
  position: relative
    }

a:hover {
      color: #6e44ff;
      transform:rotate(-10deg); /* play with this 15deg value, works w/ negatives too! */
  /* more CSS transform options: https://developer.mozilla.org/en-US/docs/Web/CSS/transform */
    }

/* HEADER */
header #nav {
  margin: 5px auto;
  font-size: 15px;
  width: 98%;
  color: #ffffff;
  z-index: 2;
}
header #nav a {
  margin: 5px;
}
header #nav a:hover {
   transform:rotate(-10deg);
}




/* HOMEPAGE */

/* style nav button images */
.comicNav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 15px 0px;
}
.comicNav img {
  width: 170px;
  max-width: 50%;
  padding-right: 30px;
  z-index: 2;
}

/* style comic page image */
.comicPage img {
  position: relative;
  max-height: 120vh;
  max-width: 100vw;
  z-index: 2;
  border: 3px solid black;
  margin: auto;
  box-sizing: border-box;
  -webkit-box-shadow: 5px 5px 0px 0px #000000, 0px 0px 0px 2px #FFFFFF, 5px 5px 0px 2px #FFFFFF; 
  box-shadow: 5px 5px 0px 0px #000000, 0px 0px 0px 2px #FFFFFF, 5px 5px 0px 2px #FFFFFF; 
}


/* style author notes */
#authorNotes {
  background-color: white;
  border: 3px solid black;
  margin: auto;
  box-sizing: border-box;
   padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
  width: 600px;
  max-width: 80%;
  -webkit-box-shadow: 5px 5px 0px 0px #000000, 0px 0px 0px 2px #FFFFFF, 5px 5px 0px 2px #FFFFFF; 
  box-shadow: 5px 5px 0px 0px #000000, 0px 0px 0px 2px #FFFFFF, 5px 5px 0px 2px #FFFFFF; 
}

/* ARCHIVE PAGE */

/* style table in which archive is displayed */
.archiveTable {
  width: 60vw;
  border-collapse:collapse;
}

/* style archive table cells */
.archiveTable td {
  padding: 3px;
  vertical-align: center;
}

/* style table cell in which page title is displayed */
.archiveCellTitle:not(.leftAlignTableText) {
  max-width: 300px;
  text-align: center;
  
}

.archiveCellDate {
  text-align: right;
  min-width: 120px;
}

.archiveCellNum {
  text-align: center;
  min-width: 30px;
}

/* style the thumbnails on the archive page */
.archiveCellThumb {
    width: 500px;
    max-width: 60px;
}

.archiveCellThumb img{
    max-width: 100%;
  }

/* for left aligning the text in a table cell */
.leftAlignTableText td {
  text-align: left;
}

/* highlight a table row and make pointer into hand when moused over */
.archiveRow:hover {
  background-color: #D1459E;
  cursor: pointer;
}

/* about page*/
.myface {
  width: 200px;
  margin: 20px auto;
  margin-right: 20px;
  margin-left: 20px;
}

#authorBlurb p {
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
}

/* FOOTER */
footer {
  background: #000000;
  color: #D1459E;
  width: 100%;
  height: 200px;
  font-size: 20px;
    display: table;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
   z-index: 2;
   box-shadow: 1px -11px 0px 3px rgba(0,0,0,1);
  -webkit-box-shadow: 1px -11px 0px 3px rgba(0,0,0,1);
  -moz-box-shadow: 1px -11px 0px 3px rgba(0,0,0,1);
}

.footbutton {
  height: 100px;
  margin: 10px;
}

#footershadow

footer p {
  margin: 50 auto;
}

footer a {
  color: #8747FF
}

footer a:hover {
  color: #6D39CC
}

/* take away margins from the edges of the screen */
html, body {
  margin: 0;
}

/*settings for mobile*/
@media only screen and (max-width: 600px) {
  .comicPage img {
    width: 90vw;
    max-height: 80vh;
  }
  .subPage {
    max-width: 90%;
}
  .archiveTable {
    width: 80vw;
  }
  .headerbutton {
    height: 50px;
  }
  .footbutton {
    height: 50px;
    margin: 30px;
  }
}



