/* 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." */

/*@media {*/
/*  .container {*/
/*    max-width:550px;*/
/*  }*/
/*}*/

main {
  display: block; 
}

.container {
  width: 100%;
  max-width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.video .embed-responsive.embed-responsive-4by3 {
  margin-top: 1rem;
}

.video .embed-responsive {
  text-align: center;
  /*margin-top: 2rem;*/
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

/* universal background color */
body {
  color: white;
  background-color: black; 
  font-family: 'FreeMono', monospace;
}

/* 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: 'FreeMono', monospace;
  color: #ffffff;
}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'FreeMono', monospace;
  font-size: large;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.fourohfour {
  padding: 12px 12px;
  font-family: 'FreeMono', monospace;
}

.blurb {
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 60vh;
  margin: 0 auto;
  display: block;
}

/* link colors */
a {
      color: #eeeeee;
    }

a:hover {
  background-color: #223322;
  color: #44ff44;
}
    
a:not([data-attr="img"]):hover {
 background-color: transparent; 
}

.logo-link:hover{
 background-color: transparent; 
}

/* HEADER */
header #nav {
  background-color: #000000;
  font-size: 20px;
  width: 98%;
  margin: auto;
}


/* FOOTER */
footer {
  color: #888888;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  font-size: 12px;
}

footer p {
  margin: auto;
}

footer a {
  color: #dddddd
}

footer a:hover {
  background-color: #223322;
  color: #44ff44
}
