/* 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; 
}

.charaimage {
display: grid;
}

details{
  content: '▶'; /* A unicode character for a triangle */
  left: 0; /* Aligns the custom marker to the far left */
  transition: transform 0.2s;
  
}

details>summary {
 
  list-style: none;
}
summary::-webkit-details-marker {
  display: none
}

summary::after {
  content: ' ►';
}
details[open] summary:after {
  content: " ▼";
}

/* universal background color */
body {
margin: 0px;
    background-color: #000000;
    background: rgba(255, 148, 112, 1) url(https://irisarcany.neocities.org/adjusted_image.png);
    background-blend-mode: multiply;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

/* header image */
header img {
  width: 3em;
  max-width: 98%;
  text-align: left;
  margin: 10px;
}

/* 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: 'AnimeAce', cursive;
  color: white;

}

#showComic,  h2 {
  font-family: 'AnimeAce', cursive;
  color: white;
  font-size: 0.80em;

}

#showComic, h1  {
  font-family: 'AnimeAce', cursive;
  color: white;
  font-size: 1.2em;
  padding-top: 2px;

}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'Open Sans', sans-serif;
  font-size: large;
}

/* STYLING FOR SUBPAGES (about, characters, etc) */

/*general*/

.subPage {
  width: 1000px;
  max-width: 98%;
  background-color: #293445;
  border-radius: 5px;
  color: white;
  margin-top: 60px;
  margin-bottom: -10px;
  height: 120%;
  padding: 0px 12px 12px;
  margin-left: auto; 
  margin-right: auto;
}

.iframe {
  width: 1000px;
  max-width: 98%;
  background-color: #293445;
  border-radius: 5px;
  color: white;
  margin-top: 60px;
  margin-bottom: -10px;
  height: 120%;
  padding: 0px 12px 12px;
  margin-left: auto; 
  margin-right: auto;
}


.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: #FFFFFF;
    }

a:hover {
      color: #1a2536;
    }

/* HEADER */
header #nav {
  color: white;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
  list-style-type: none;
  background-color: #0e141d;
  margin-top: 0px;
  font-family: AnimeAce;
  font-size: 0.8em;
  position: fixed;
  right: 0px;
  width: 100%;
  z-index: 10;
  top:0px;
  margin-bottom: 20px;
}

header a{
  color: white;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-align: center;
  overflow: hidden;
  list-style-type: none;
  background-color: #0e141d;
  margin-top: 0px;
  float:right;
  border-spacing: 2px;
  
}

header a:hover{
  background-color: #1a2637;
  color: white;

}  

@font-face {
 font-family:  AnimeAce;
  src: url(https://irisarcany.neocities.org/AnimeAce_bld.otf)
  format("opentype");
  
}

/* HOMEPAGE */

/* style nav button images */
.comicNav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
}
.comicNav img {
  max-width: 50%;
  padding-right: 30px;
}

/* style comic page image */
.comicPage img {
  width: 900px;
  max-width: 98%;
  border: 2px solid;
  border-color: #293445
}

/* style author notes */
#authorNotes {
  background-color:#293445;
  margin: auto;
  color: white;
  padding: 12px;
  max-width: 98%;
  padding-top: 12px;
  width: 900px;
  outline: 3px; outline-color: #293445;
  font-family: arial;
  border: 10px solid;
  border-color: #293445;
  padding-left: 12px;
  
}

#authorNotes h2{
  background-color:#293445;
  margin: auto;
  color: white;
  padding-left: 0px;
  max-width: 98%;
  width: 900px;
  font-family:  AnimeAce;
  font-size: 1em;
}

/* ARCHIVE PAGE */

/* style table in which archive is displayed */
.archiveTable {
  width: 100%;
  border-collapse:collapse;
}

/* style archive table cells */
.archiveTable td {
  padding: 3px;
  vertical-align: center;
  
  
}

.chapter1 {
background-color: #0e141e;
border-radius: 0px 0px 10px 10px;
}
.chapter1 summary {
background:  #0e141e url(https://irisarcany.neocities.org/img/archivearts/IRIS1.gif);
background-size: cover;
padding: 15px;
background-position: 0 40%;
background-blend-mode: overlay;
background-repeat: no-repeat;

}
/* style table cell in which page title is displayed */
.archiveCellTitle:not(.leftAlignTableText) {
  max-width: 300px;
  text-align: center;
}

.archiveCellDate {
  text-align: center;
  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: white;
  font-weight: bold;;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
  width: 100%;
  font-size: 12px;
}

footer p {
  margin: auto;
}

footer a {
  color: white;
  font-weight: bold;
}

footer a:hover {
  color: #868d26
}

/* take away margins from the edges of the screen */
html, body {
  margin: 0;
}

