/* POWER TRIP — webcomic stylesheet */
/* Color palette: yellow #F9B700 | pink #E8197D | black #000000 | white #ffffff */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Open+Sans&display=swap');

body, div, main, section, article {
  box-sizing: border-box;
}

body {
  background-color: #F9B700;
  margin: 0;
}

html, body {
  margin: 0;
}

/* FONTS */
#showComic, header, h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  letter-spacing: 0.06em;
}

.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'Open Sans', sans-serif;
  font-size: large;
}

header img {
  width: 500px;
  max-width: 98%;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* LINKS */
a {
  color: #000000;
}

a:hover {
  color: #E8197D;
}

/* HEADER */
header {
  padding-top: 10px;
}

header #nav {
  background-color: #000000;
  outline: 3px solid #000000;
  font-size: 20px;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  letter-spacing: 0.12em;
  width: 98%;
  margin: auto;
}

header #nav a {
  color: #F9B700;
}

header #nav a:hover {
  color: #E8197D;
}

/* SUBPAGES */
.subPage {
  width: 1000px;
  max-width: 98%;
  background-color: #ffffff;
  outline: 4px solid #000000;
  margin: auto;
  margin-bottom: 10px;
  padding: 0px 12px 12px;
}

.subPage:not(.archivePage) {
  text-align: center;
}

.leftPic {
  clear: left;
  float: right;
  margin-left: 20px;
}

.rightPic {
  clear: right;
  float: left;
  margin-left: 20px;
}

.charTable, .charTable td {
  width: 100%;
}

/* COMIC READER */
.comicNav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}

.comicNav img {
  width: 80px;
  max-width: 98%;
  padding-right: 30px;
}

.comicNav a:hover img {
  filter: invert(15%) sepia(100%) saturate(5000%) hue-rotate(300deg) brightness(0.85);
}

.comicPage img {
  width: 900px;
  max-width: 98%;
}

#authorNotes {
  background-color: #ffffff;
  outline: 4px solid #000000;
  margin: auto;
  padding: 3px;
  padding-top: 0px;
  width: 900px;
  max-width: 98%;
}

#authorNotes h2 {
  color: #E8197D;
}

#showComic h2 {
  color: #E8197D;
  margin: 6px 0;
}

/* ARCHIVE */
.archiveTable {
  width: 90%;
  border-collapse: collapse;
}

.archiveTable td {
  padding: 3px;
  vertical-align: center;
}

.archiveCellTitle:not(.leftAlignTableText) {
  max-width: 300px;
  text-align: center;
}

.archiveCellDate {
  text-align: right;
  min-width: 120px;
}

.archiveCellNum {
  text-align: center;
  min-width: 30px;
}

.archiveCellThumb {
  width: 500px;
  max-width: 60px;
}

.archiveCellThumb img {
  max-width: 100%;
}

.leftAlignTableText td {
  text-align: left;
}

.archiveRow:hover {
  background-color: #E8197D;
  cursor: pointer;
  color: #ffffff;
}

.archiveRow:hover a {
  color: #ffffff;
}

/* FOOTER */
footer {
  color: #000000;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
}

footer p {
  margin: auto;
}

footer a {
  color: #E8197D;
}

footer a:hover {
  color: #000000;
}
