/* 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." */



/* universal background color */
body {
  background-image: url('img/purplefilm.jpg');
  background-repeat: repeat;
  background-attachment: fixed;
  background-color: black;

}


/*FONTS*/

/* header font */
#showComic, header, h1, h2, h3, h4, h5 {
  font-family: 'Bokor'
}
  .bokor-regular {
  font-family: "Bokor", system-ui;
  font-weight: 400;
  font-style: normal;
}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'Mozilla Headline', sans-serif;
  font-size: large;
}
  
.mozilla-headline-<uniquifier> {
  font-family: "Mozilla Headline", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.subPage {
  width: 1000px;
  max-width: 98%;
  background-color: #ffffff;
  outline: 3px solid #000000;
  position: static;
  margin-left: 400px;
  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 left */
.rightPic {
  clear: right;
  float:left;
  margin-left:20px;
}

/* specific to Characters */
.charTable, .charTable td { 
  width: 100%;
}

/* link colors */
/* unvisited link */
a:link {
  color: #000000;
  font-weight: bold;
 
}

/* visited link */
a:visited {
  color: #000000;
  font-weight: bold;
}

/* mouse over link */
a:hover {
  color: #F59ED5;
  transition: 0.5s ease;
  filter: blur(1px);
}

/* selected link */
a:active {
  color: #000000;
  font-weight: bold;
}

/* HOMEPAGE */

/* style nav button images */
#comicNav {
  position:static;
font-size:20pt;
top:0;
margin:0 0 .75em;
margin-left: 400px;
font-family: 'Mozilla Headline', sans-serif;
}

.comicNav img {
  width:755px; 
margin:0 20px 20px 0;
padding-top:10px;
float:left;
text-align:left;
opacity: 0.6;
font-family: 'Mozilla Headline', sans-serif;
}

/* style comic page image */

#comicPage {
position:static;
font-size:14pt;
top:0;
margin:0 0 .75em;
font-family: 'Mozilla Headline', sans-serif;
}

.comicPage img {
height:1020px; 
width:755px; 
margin:0px 0px 20px 0px;
padding:50px;
border:solid 1px #000000;
float:left;
background: #FFFFFF; 
text-align:left;
font-family: 'Mozilla Headline', sans-serif;
}


/* style author notes */
#authorNotes {
  position:static;
font-size:1.15em;
top:0;
margin:0 0 .75em;
font-family: 'Mozilla Headline', sans-serif;
}

.authorNotes {
height:150px;
width:755px;
margin:0 10px 0px 0;
padding-top:0px;
border:solid 0px #000000;
float:left;
background:black;
text-align:center;
opacity: 0.6;
font-family: 'Mozilla Headline', sans-serif;
}

#updatebox {
position:static;
font-size:14pt;
top:0;
margin:0 0 .75em;
}

.updatebox {
height:300px; 
width:755px; 
margin:0 10px 20px 0;
padding-top:5px;
float:left;
background: black; 
text-align:left;
opacity: 0.6;
}

#currently {
position:static;
font-size:1.15em;
top:0;
margin:0 0 .75em;
}

.currently {
height:710px;
width:755px;
margin:0 4px 20px 0;
padding-top:2px;
filter: drop-shadow(1px 1px 0 black) drop-shadow(-1px 1px 0 black) drop-shadow(0 2px 0 black) drop-shadow(0 -1px 0 black);
border:solid 1px #000000;
float:left;
background:#FFFFFF;
text-align:center;
}
  
#leftCol {
    position: fixed;
    width: 345px;
    height: 100%;
    background-color: black;
    opacity: 0.8;
    background: url('https://grossgirl94.neocities.org/0/barbsidecolmn344.gif');
    border: 0px solid black;
    font-size: 12px;
    font-family: courier;
    padding-left: 300px;
    top: 0;
    bottom: 0;
}

#content {
    position: fixed;
    top: 50px;
    margin-left:300px;
}

.content {
    background-color: black;
    padding: 10px;
}


/* 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: #DA5437;
  cursor: pointer;
}

/* FOOTER */
footer {
  color: #421a1a;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  font-size: 12px;
}

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;
}

