/* Melon's Gallery Maker! 0.0.2+ */

body {
background-color: #070AB8;
background-image: url("/water.gif");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
}

.body2 {
background-color: #070AB8;
background-image: url("/under.gif");
background-repeat: no-repeat;
background-attachment: fixed;
}

header img {
  width: 900px;
  max-width: 98%;
}

.getOUT {
  width: 0;
  height: 0;
}

.ourgh {
  width: 25%;
  max-width: 100%;
}

.subtitlefigure {
  width: 380px;
  max-width: 98%;
}

.subtitleart {
  width: 202px;
  max-width: 98%;
}

/*FONTS*/

/* header font */
#showComic, header, h1, h2, h3, h4, h5 {
  font-family: 'Cherry Cream Soda', cursive;
}

/* body font */
.subPage p, footer, #authorNotes, .archiveTable {
  font-family: 'Open Sans', sans-serif;
  font-size: large;
}

.thedivider {
  background-color:#370073;
  color: #370073;
  opacity: 0;
  margin: auto;
  padding: 3px;
  padding-top: 3px;
  padding-bottom: 3px;
  max-width: 100%;
}

a {
  color: #000000;
}

a:hover {
  color: #FFFFFF;
}
    
.button {
  background-image: linear-gradient(to top, #535E69, #F0F6FF, #FFFFFF, #D3D9E0);
  border-color: #292E33;
  padding: 15px;
  border-radius: 60px;
  width: auto;
  font-size: 20px;
  margin: auto;
  outline: 2px solid #55555E;
  font-family: 'Cherry Cream Soda', cursive;
  display: inline-flex;
  align-items: center;    
  justify-content: center;
  gap: 10px;
}
.button:hover {
  background-image: linear-gradient(to top, black, #535E69, #535E69, #F0F6FF);
  border-color: #292E33;
  padding: 15px;
  border-radius: 60px;
  width: auto;
  font-size: 20px;
  margin: auto;
  outline: 2px solid #55555E;
  font-family: 'Cherry Cream Soda', cursive;
}
header,
body > section,
footer {
    padding: 5px;
}

nav {
    margin: 10px;
    clear: both;
}

footer {
    clear: both;
    font-size: 0.7em;
    padding-top: 30px;
}

/* Gallery Pages */

#photos {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

#photos figure {
    margin: 10px;
    max-width: min-content;
}

#photos img {
    border: 5px ridge #070AB8;
    border-radius: 5px;
}

#photos img:hover {
    border-color: #51D7FC;
}

#photos span {
    text-align: center;
    display: block;
}

#photos figcaption {
    padding: 10px 0px;
}

.page-links {
    text-align: center;
}

.page-links ul {
    padding: 0px 5px;
    margin: 10px 0px;
    display: inline-block;
}
.page-links li {
    list-style: none;
    display: inline;
    margin: 0px 3px;
}

/* Mobile Styling */

@media (max-width: 800px) {
    body {
        padding: 10px;
    }

    #photos figure {
        width: 95%;
        max-width: unset;
    }

    #photos img {
        width: 100%;
    }
}

/* Styling for JavaScript viewer (if enabled) */

#js-viewer {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 5, 0.612);
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    
}

#js-viewer img {
    max-width: 95%;
    max-height: 80%;
    height: auto;
    width: auto;
    border-radius: 18px;
    background-image: radial-gradient(#9D9FFC, #070AB8);
    padding: 6px;
}

#js-viewer span {
    margin-top: 10px;
}

#js-viewer span button {
    border-radius: 0px;
    border: 2px outset #cecece;
    background-color: #e2e2e2;
    cursor: pointer;
}

#js-viewer span button:hover {
    border: 2px inset #cecece;
    background-color: #b8b8b8;
}
