@font-face {
  font-family: monhugo;
  src: url(/fonts/MonHugo-in.ttf);
}
@font-face {
  font-family: abaddonl;
  src: url(/fonts/Abaddon\ Light.ttf);
}
@font-face {
  font-family: abaddonb;
  src: url(/fonts/Abaddon\ Bold.ttf);
}

nav{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap:10px;
  font-family: abaddonl;
  font-size: 19px;

}

.navlink{

background-color:  #b7bba1;
text-align: center;
width:100px;height:25px;
display: block;
font-size: 19px;
padding-top:5px;

}
.navlink a{color:rgb(0, 0, 0);}
a{text-decoration: none;color: rgb(126, 129, 142);}
.navlink:hover{
  background-color: rgb(255, 255, 255);
 


}
/* 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." */


   @font-face{ 
    font-family: 'courier';
    src: url('C:\Users\rosac\Desktop\mynameisross\fonts\rossfonts\web fonts\notcouriersans_regular_macroman\NotCourierSans-webfont.woff');
    src: 
         url('C:\Users\rosac\Desktop\mynameisross\fonts\rossfonts\web fonts\notcouriersans_regular_macroman\NotCourierSans-webfont.woff') format('woff');
  }


body, div, main, section, article {
  box-sizing: border-box; 
}

/* universal background color */
body {
  background-color: rgb(217, 212, 192);
  background-image: url('/images/plighttexture.png');
  background-repeat: repeat;
  background-blend-mode: multiply;
  background-size: 200px 200px;
}

/* header image */
header img {
  width: 500px;
  max-width: 98%;
}

/* clearfix hack to prevent image overflow. check out the W3Schools page on it. */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/*FONTS*/

/* header font */
#showComic, header, h1, h2, h3, h4, h5 {
  font-family: 'courier', sans-serif;
  font-size: 15px;
}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'abaddonl', sans-serif;
  font-size: large;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.subPage {
  width: 700px;
  max-width: 98%;
  background-color: #49533e;
  margin-top: 50px;
  margin: auto;
  margin-bottom: 10px;
  padding: 20px 5px 20px;
  color:rgb(255, 255, 255);
}

.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;
    }

a:hover {
      color: #8cb173;
    }

/* HEADER */
header #nav {
  background-color: #ffffff;
  outline: 3px solid #000000;
  font-size: 20px;
  width: 98%;
  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: 690px;
  max-width: 98%;
  opacity: 1;
  
}

/* style author notes */
#authorNotes {
  background-color:#383f2e;
  font-family: abaddonl;
  margin:auto;
  margin-top: 0px;
  margin-bottom: 90px;
  padding: 0px 30px 0px 30px;
  width: 680px;
  color:white;
  border: solid 2px white;
  font-size: 18px;

}

/* ARCHIVE PAGE */

/* style table in which archive is displayed */
.archiveTable {
  width: 90%;
  border-collapse:collapse;
}

/* style archive table cells */
.archiveTable td {
  padding: 10px;
  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: 90px;
}
.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: #3d4643;
  cursor: pointer;
}

/* FOOTER */
footer {
  color: #421a1a00;
  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;
}

