/* 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." */


body, div, main, section, article {
  box-sizing: border-box; 
}

/* universal background color */
body {
  /*background-color: #DA5437;
  background-image: url(https://dl3.glitter-graphics.net/pub/87/87243s4jmofk28q.gif);*/
  background-size: 25%, 151%;
  background-image: url('https://your-heart-rate-is-226bpm.neocities.org/the%20U.A.A/SwordsmachineSaturday/Untitled160_20250920223643.png'),url(https://dl3.glitter-graphics.net/pub/87/87243s4jmofk28q.gif);
background-repeat: repeat;
background-blend-mode:soft-light,soft-light;
  background-color: #700000;
  background-attachment:fixed;
}

/* header image */
header img {
  width: 399px;
  max-width: 9%;
}

/* clearfix hack to prevent image overflow. check out the W3Schools page on it. */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*FONTS*/

/* header font */
 @font-face {
        font-family: 'VCR OSD Mono';
        src: local('VCR OSD Mono'), url('https://fonts.cdnfonts.com/s/14798/VCR_OSD_MONO_1.001[1].woff') format('woff');}
#showComic, header, h1, h2, h3, h4, h5 {
  font-family:'VCR OSD Mono','Arial Narrow', monospace;
  font-size: 1px;
  color: rgba(240, 248, 255, 0);
}
.chrono h2{
  font-size: 23px;
  color: black;
  
}

h3{
  font-size: 27px;
  color: black;
}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family:'VCR OSD Mono','Arial Narrow', monospace;
  font-size: 14px;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.subPage {
  width: 1000px;
  max-width: 98%;
  background-color: rgba(255, 255, 255, 0.54);
  outline: 3px solid #000000;
  margin: auto;
  margin-bottom: 10px;
  padding: 0 12px 12px;
}

.subPage:not(.archivePage) {
  text-align: 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-left:20px;
}

/* specific to Characters */
.charTable, .charTable td { 
  width: 100%;
}

/* link colors */
a {
      color: #000000;
  font-size: 28px;
    }

@media screen and (max-width: 450px) {
  a {
    font-size: 18px;
  }
  header #nav {
     height: 34px;
    width: 459px;
    max-width: 98%;
  }
}

a:hover {
      color: #0800ff;
    }

/* HEADER */
header #nav {
  background-color: rgba(249, 249, 249, 0.44);
max-width: 98%;
  outline: 2px solid #ffffff;
  font-size: 26px;
  width: 700px;
  margin: auto;
}

/* HOMEPAGE */

/* style nav button images */
.comicNav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.comicNav img {
  width: 80px;
  max-width: 98%;
  padding-right: 30px;
}

/* style comic page image */
.comicPage img {
  width: 817px;
  max-width: 98%;
}

/* style author notes */
#authorNotes {
  background-color:rgba(103, 103, 103, 0.55);
  outline: 3px solid rgba(200, 200, 200, 0.56);
  margin: auto;
  padding: 10px;
  padding-top: 3;
  width: 638px;
  
  max-width: 98%;
}

/* ARCHIVE PAGE */

/* 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: #ff0000;
  cursor: pointer;
}

/* FOOTER */
footer {
  color: #ffffff;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  font-size: 13px;
}

footer p {
  margin: auto;
}

footer a {
  color: #c8d32b
}

footer a:hover {
  color: #868d26
}

/* take away margins from the edges of the screen */
html, body {
  margin: 0;
}

