
/* original CSS by rarebit! */
/* Load */

@import url('../fonts/fontpackMontserrat.css');

/* Setup */

body, div, main, section, article {
  box-sizing: border-box; 
}

body { /* universal background and text color. it's the same color because im fuckign maniacle */
  background-color: #34060E; 
  color: #34060E; 
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Images */

header img {
  width: 500px;
  max-width: 98%;
}

/* Text Formatting */

#showComic, header, h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: large;
}

/* General Subpage Styles (about, characters, etc) */

.subPage {
  width: 1000px;
  max-width: 98%;
  background-color: #ebebfb;
  outline: 3px solid #bfbff2;
  margin: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 20px;
}

.subPage:not(.archivePage) {
  text-align: center;
}

/* for info logos */
.logoInsert {
  width: 500px;
  max-width: 98%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* link colors */
a {
  text-decoration: none;
  color: #e1315a;
}

a:hover {
  color: #ee90a6;
}

/* Header Styles */

header #nav {
  font-size: 24px;
  width: 98%;
  margin: auto;
}

header ul {
    margin: 0px;
    padding: 0px;
}

header li {
    list-style: none;
    margin: 15px;
    margin-top: 0px;
}

/* Homepage Styles */

/* style nav button images */
.comicNav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}
.comicNav img {
  width: 80px;
  max-width: 98%;
  padding-left: 15px;
  padding-right: 15px;
}

/* recolor page title */
.writePageTitle {
  color: #ebebfb;
}

/* style comic page image */
.comicPage img {
  width: 900px;
  max-width: 98%;
}

/* style author notes */
#authorNotes {
  background-color: #ebebfb;
  outline: 3px solid #bfbff2;
  margin: auto;
  padding: 12px;
  width: 900px;
  max-width: 98%;
}

/* Archive Styles */

/* style table in which archive is displayed */
.archiveTable {
  width: 90%;
  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: #ee90a6;
  cursor: pointer;
}

/* Footer Styles */

footer {
  color: #ebebfb;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  font-size: 16px;
}

footer p {
  margin: auto;
}

/* take away margins from the edges of the screen */
html, body {
  margin: 0;
}