/* 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: #000000; 
  background-image: url('https://tatyana-sippy.neocities.org/img/va-sec-web-bg.png');
  background-attachment: fixed; 
  background-repeat:repeat;
  background-position: center;
}

/* cursor */
 html {
  cursor: url('https://tatyana-sippy.neocities.org/img/sars-cursor.png '), default;
}

::-webkit-scrollbar-thumb {
background-color: #144B00;  
border-radius: 50px;
border:2px solid #49FE00;}
::-webkit-scrollbar {
width: 10px; height: 4px; 
background: #000000;}

/* header image */
header img {
  width: 2000px;
  max-width: 100%;
   mask-image: linear-gradient(to bottom, rgba(0,0,0,1.5), rgba(0,0,0,0.01));
   -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1.5)), to(rgba(0,0,0,0.01)));
  }

/* clearfix hack to prevent image overflow. check out the W3Schools page on it. */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* nav buttons */
.button {
  display: inline-block;
  padding: 0px 25px;
  font-size: 23px;
  cursor: pointer;
  font-family: "VT323", monospace;
  text-transform:uppercase;
  font-weight:bold;
  letter-spacing:3px;
  color: #000000;
  text-align: center;
  text-decoration: none;
  background-color: #144B00;
  border: 1px solid #49FE00;
  border-radius: 15px;
  box-shadow: 0 5px #0B2C00;
}

.button:active {
  box-shadow: 0 3px #666;
  transform: translateY(4px);
}

/*FONTS*/

/* header font */
#showComic, header, h1, h2, h3, h4, h5 {
  font-family: "VT323", monospace;
  text-transform:uppercase;
  font-weight:bold;
  letter-spacing:3px;
  color:#F3F3F3;

}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family: "VT323", monospace;
  font-size: small;
  letter-spacing:1px;
  color: #ffffff;
  font-size: 18px;
  color:#F3F3F3;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.subPage {
  width: 1000px;
  max-width: 98%;
  background-color: #000000;
  outline: 1px solid #144B00;
  border-radius: 15px;
  margin: auto;
  margin-bottom: 10px;
  padding: 0px 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 right */
.rightPic {
  clear: right;
  float:left;
  margin-left:20px;
}

/* specific to Characters */
.charTable, .charTable td { 
  width: 100%;
}

/* link colors */
a {
      color: #4bffdb; text-decoration:none;
    }

a:hover {
      color: #909090;
    }

/* HEADER */
header #nav {
  background-color: #;
  font-size: 25px;
  width: 100%;
  margin: auto;
}

/* HOMEPAGE */

/* 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-right: 30px;
}

/* style comic page image */
.comicPage img {
  width: 900px;
  max-width: 98%;
  outline: 1px solid #144B00;
}

/* style author notes */
#authorNotes {
  background-color:#000000;
  outline: 1px solid #144B00;
  border-radius: 0px;
  margin: auto;
  padding: 3px;
  padding-top: 0px;
  width: 900px;
  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: left;
  
}

/* style table cell in which page title is displayed */
.archiveCellTitle:not(.leftAlignTableText) {
  max-width: 300px;
  text-align: left;
}

.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: #909090;
  cursor: pointer;
}

/* FOOTER */
footer {
  color: #49FE00;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  font-size: 12px;
}

footer p {
  margin: auto;
}

footer a {
  color: #00FF93
}

footer a:hover {
  color: #999
}

/* take away margins from the edges of the screen */
html, body {
  margin: 0;
}

