/*-- FONTS --*/
@import url('https://fonts.googleapis.com/css2?family=Silkscreen&family=Bitcount+Prop+Double:wght@100..900&family=Bitcount+Prop+Single:wght@100..900&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Josefin+Slab:ital,wght@0,100..700;1,100..700&family=Cabin+Sketch&family=DotGothic16&display=swap');
/* CHARATER PAGE THEMES */
    .SUZU {
    --FRAMMYJAMMY: #edcc15;
    --container-color: #0992bc;
    --text-color: #20fc50;
    --background-color: #016842;
    --link-color: #fcf22d;
    --link-hover: #fc6641;
    --button-hover: #1a4d91;
    --header-colors: #99ea02;
    --border-color: #090a54;
    --navi-color: #f2ca29;
    --navi-hover: #ed7710;
    --copy-right: #70bf8c;
    --date-time: #deef6b;
    --selection-color: #007f43;
    --text-selection:#000000;
    --active-color: #fc3c3c;
    --shadow-color: #10182d;
    --inact-text-color: #a3a3a3;
    --inact-bg-color: #606060;
    --highlight-color: #0dddc2;
    --background-blend-mode: overlay;
    --tv-color: #20fc50;
    --tv-b-color:#054234;
}

body, div, main, section, article {
  box-sizing: border-box; 
}

body {
  background-color: var(--background-color); 
}

header img {
  margin-top:58.9px;
  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;
}

strong {
  font-weight:bolder;
  font-family:'Handjet', system-ui;
}

  .box-box {
    margin-top:10px;
  }

/*FONTS*/

/* header font */
#showComic, header, h1, h2, h3, h4, h5 {
  font-family: 'Bitcount Prop Double', system-ui;
  font-weight:normal;
}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family:'Handjet', system-ui;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.subPage {
  width: 1000px;
  max-width: 98%;
  color: var(--text-color);
  background-color: var(--container-color);
  border-left: 3px solid var(--border-color);
  border-right: 3px solid var(--border-color);
  border-top: 3px solid var(--highlight-color);
  border-bottom: 3px solid var(--shadow-color);
  margin: auto;
  margin-bottom: 10px;
  padding: 0px 12px 12px;
}

.subPage:not(.archivePage) {
  text-align: center;
}

/* for pictures displayed to the left */
.leftPic {
  position:relative;
  clear: left;
  float:right;
  z-index:10;
}

.flex-left {
  display:flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

/* for pictures displayed to the left */
.rightPic {
  clear: right;
  float:left;
  margin-left:20px;
}

/* specific to Characters */
.charTable, .charTable td { 
  width: 100%;
}

.box-lable {
        font-family: 'Handjet', system-ui;
        text-transform:uppercase;
        text-shadow:0px -1px 0px rgba(0, 0, 0, 0.50);
        background-color:var(--container-color);
        text-align: center;
        border-top:3px solid var(--highlight-color);
        border-right: 3px solid var(--background-color);
        border-left: 3px solid var(--border-color);
        border-bottom: 4px solid var(--shadow-color);
        padding: 14px 16px;
        width:400px;
        text-decoration: none;
        font-size: 28px;
  }
  
  .box-box h1, .box-box h2, .box-box h3 {
    height:100%;
    margin-top:15px;
  }
  
  .box-box h2 {
    font-size:26px;
  }
  
   .c-info-banner-inside {
     background-color:var(--container-color);
     margin-top:-15px;
     margin-bottom:-10px;
   }
  
  .c-info-banner {
  width:100%;
  margin-top:20px;
  margin-bottom:15px;
  margin-left:0 auto;
  margin-right:0 auto;
  border: 2px solid var(--border-color);
  border-image-source: url('/graphics/r-hr.png');
  border-image-slice:0;
  border-image-repeat: stretch;
  }
  
    .c-info-banner img {
    margin-top:-5px;
  }

/* link colors */
a {
      color: var(--link-color);
      font-family:'Handjet', system-ui;
    }

a:hover {
      color: var(--link-hover);
    }

/* HEADER */
header {
    margin-top:55px;
}

header img {
  margin-bottom:40px;
}
/* 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: 200px;
  max-width: 98%;
}

/* style author notes */
.author-notes-container {
    overflow-x: hidden;
    font-size: 16px;
    font-family: 'DotGothic16', sans-serif;
    background-color: var(--container-color);
    border-top: 2px solid var(--highlight-color);
    border-left: 3px solid var(--border-color);
    border-right: 3px solid var(--border-color);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    width: 60%;
    position: relative;
    margin: 20px auto;
    top:20px;
    padding: 20px;
}

.writeAuthorNotes p {
  color:var(--tv-color);
  margin-bottom:-20px;
}

#authorNotes {
  border:5px solid #000000;
  background-color:var(--tv-b-color);
  color:var(--tv-color);
  margin: auto;
  padding:0;
  width: 500px;
  height:200px;
}

  .scrolling-content {
    overflow-y: auto;
}

.scrolling-content p, h1, h2, h3, h4, h5, h6 {
  margin-top:-10px;
}

/* ARCHIVE PAGE */

/* style table in which archive is displayed */
.archiveTable {
  width: 90%;
  border-collapse:collapse;
}

/* style archive table cells */
.archiveTable td {
  color:var(--tv-color);
  padding: 3px;
  vertical-align: center;
}

.archiveTable td:hover {
  color:var(--navi-color);
}

/* 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:rgba(34, 35, 38, 0.50);
  cursor: pointer;
}

/* COMMENT BOX */
  .home-desc {
    display:none;
  }
  
  .hcb-like, .hcb-reply, .hcb-flag {
    color: var(--text-color) !important;
    background-color:var(--container-color) !important;
    border-top: 2px solid var(--highlight-color) !important;
    border-left: 3px solid var(--highlight-color) !important;
    border-right: 2px solid var(--border-color) !important;
    border-bottom: 3px solid var(--border-color) !important;
    font-family:'Silkscreen', sans-serif;
    padding:5px !important;
}
 .hcb-like:hover, .hcb-reply:hover, .hcb-flag:hover {
    border-top: 2px solid var(--shadow-color) !important;
    border-left: 3px solid var(--border-color) !important;
    border-right: 2px solid var(--container-color) !important;
    border-bottom: 3px solid var(--highlight-color) !important;
    color: var(--navi-color) !important;
    background-color: var(--background-color) !important;
}

  #HCB_comment_box {
    padding-left:50px;
    padding-right:50px;
    }
  
  #HCB_comment_box #hcb_form_content {
    font-family:'DotGothic16', sans-serif;
    width:100%;
  }
  
#HCB_comment_box h3 {
  font-family:'Bitcount Prop Single', system-ui;
  color:var(--shadow-color);
  text-shadow:0px -1px 0px rgba(0, 0, 0, 0.95), 0px 1px 0px var(--highlight-color);;
  text-transform:uppercase;
  margin-bottom:-5px;
}
  
.comments-container {
  width:60%;
  border-top: 2px solid var(--highlight-color);
  border-left: 3px solid var(--border-color);
  border-right: 3px solid var(--border-color);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color:var(--container-color);
  margin-left: auto;
  margin-right: auto;
  margin-bottom:20px;
  padding:20px;
  height:200vh;
  }
  
  .comment {
    font-family:'DotGothic16', sans-serif;
    margin-top:5px;
  }
  
  blockquote {
    position:relative;
    padding:16px;
    border:3px solid #000000;
    background-color:var(--tv-b-color);
  }
  
  /* Scanlines */
  .scanline-overlay {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.2) 0px,
        rgba(0, 0, 0, 0.2) 1px,
        transparent 1px,
        transparent 2px
    ) !important;
    z-index: 10 !important;
    pointer-events: none !important;
    animation: scanline-scroll 50s linear infinite !important;
}

.scanline-overlay::after {
    content: " " !important;
    display: block !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0,0,0,0.3) 120%) !important;
    border-radius: 10px !important;
    z-index: 11 !important;
    pointer-events: none !important;
}

.scanline-overlay::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.2) 0px,
        rgba(0, 0, 0, 0.2) 0.2px,
        transparent 1px,
        transparent 3px
    );
    z-index: 2;
    pointer-events: none;
    animation: scanline-scroll 50s linear infinite;
}

blockquote p.hcb-comment-body::before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.2) 0px,
        rgba(0, 0, 0, 0.2) 1px,
        transparent 1px,
        transparent 2px
    );
    z-index: 2;
    pointer-events: none;
    animation: scanline-scroll 50s linear infinite;
}

blockquote p.hcb-comment-body::after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(0,0,0,0.3) 120%);
    border-radius:0;
    z-index: 3;
    pointer-events: none;
}
  
  #comments_list {
    margin-bottom:10px;
    padding:10px;
    height:40px;
    background-color:var(--container-color);
    position: relative;
    overflow: hidden;
    border-top:3px solid var(--highlight-color);
    border-right:4px solid var(--background-color);
    border-left:4px solid var(--background-color);
    border-bottom:5px solid var(--shadow-color);
  }

  #HCB_comment_box div.comment {
  margin-bottom:10px;
}
   
  p.hcb-comment-body {
      color:var(--tv-color);
  }
  
#HCB_comment_box .hcb-comment-tb a,
#HCB_comment_box .hcb-comment-tb {
    color: red;
}

  .likes {
    color:var(--tv-color);
    padding-right:5px;
    padding-top:5px;
  }
  
  .likes img {
    filter: grayscale(100%) brightness(100%) sepia(90%) hue-rotate(90deg) saturate(500%);
    padding-right:5px;
    padding-top:5px;
  }
  
  .hcb-icon {
    display:block;
  }
  
  input #hcb_submit  {
    color:red;
    background-color:blue;
}
#HCB_comment_box input.submit:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
  
  #HCB_comment_box textarea {
    height:300px;
    background-color:var(--container-color);
  }
  
  #HCB_comment_box blockquote {
    color:var(--tv-color);
  }

/* LISTS */

ul li {
  list-style-type: square;
  margin-bottom:-10px;
  color:var(--navi-color);
}

ul li p {
  list-style-type: square;
  font-family:'Bitcount Prop Single', system-ui;
  color:var(--tv-color);
  text-transform:uppercase;
  padding:5px;
}

/* FOOTER */
footer {
  color: var(--header-colors);
  float: left;
  width: 100%;
  margin-top:10px;
  font-size: 12px;
}

footer p {
    margin-left:16px;
}

footer a {
  color: var(--link-color);
}

footer a:hover {
  color: var(--link-hover);
}

/* take away margins from the edges of the screen */
html, body {
  margin: 0;
}

/* SMALL SCREENS */

@media screen and (max-width: 950px) {
  .author-notes-container {
    width: 100%;
}

.writeAuthorNotes p {
  width:100%;
  padding-left:40px;
  padding-right:40px;
}

#authorNotes {
     position:relative;
      width:116%;
      left:-8%;
}

 #hcb_form_name_container #hcb_form_content {
    position:relative;
    width:633.6px;
  }
  
  #hcb_form_name_container input {
    position:relative;
    width:633.6px;
  }

.comments-container {
  width:100%;
  height:100%;
}
  
  #comments_list {
    position:relative;
}

@media screen and (max-width: 750px) {
  #hcb_form_name_container textarea#hcb_fprm_content {
    position:relative;
    width:950;
    left:-75px;
  }
  
  #hcb_form_name_container input {
    position:relative;
    width:950px;
    left:-75px;
  }
  
.comments-container {
  width:100%;
}
  
  #comments_list {
    position:relative;
    width:124%;
    left:-12%;
}
}

@media screen and (max-width: 390px) {
    .author-notes-container {
    width: 100%;
}

.writeAuthorNotes p {
  width:100%;
  padding:40px;
}

#authorNotes {
     position:relative;
      width:116%;
      left:-8%;
}
  
 #hcb_form_name_container #hcb_form_content {
    position:relative;
    left:-75px;
    width:400px;
  }
  
  #hcb_form_name_container input {
    position:relative;
    left:-75px;
    width:600px;
  }
  
.comments-container {
  width:100%;
}
  
  #comments_list {
    position:relative;
    width:166%;
    left:-33%;
 }
}