/* ===== Imports and other stuff ===== */

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');
@import url('https://fonts.cdnfonts.com/css/proggy-clean');
@import url('https://fonts.cdnfonts.com/css/press-start');
@import url('https://fonts.cdnfonts.com/css/edit-undo-brk');
@import url('https://fonts.cdnfonts.com/css/amiga-forever');


@font-face {
    font-family: 'DTM-sans';
    src: url("https://ne0nbandit.neocities.org/assets/fonts/DTM-Sans.ttf") format("truetype");
  }

@font-face {
    font-family: 'PixelOperator';
    src: url("https://ne0nbandit.neocities.org/assets/fonts/PixelOperator.ttf") format("truetype");
  }

/* ===== Body, text, and other basic tags ===== */

body {
  background-image: url("https://i.imgur.com/Pj4jH26.png");
  background-color: #0c091a;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #5040ae;
  font-family: 'PixelOperator', monospace;
  margin: 0px;
  line-height: 17px;
  cursor: url(https://ne0nbandit.neocities.org/assets/cursors/HotlineBlack.png), auto;
  }

* {
  box-sizing: border-box; /* THIS IS WHAT'S KEEPING THE GALLERY NAVIGATION TOGETHER, DO NOT DELETE */
}

b {
  font-weight: 100;
  font-family: 'DTM-sans', monospace;
  text-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  font-size: 15px;
  letter-spacing: 0.5px;
}

p {
  font-size: 18px;
  margin: 12px 0px;
  line-height: 16.5px
}

a {
  font-weight: bold;
  text-decoration: underline dotted 1px;
  color: #746ae6;
}

a:visited {
  color: #a832b7;
}

a:hover{
  color:fuchsia;
  /*font-size:95%;*/
  letter-spacing:0.5px;
  transition: 0.2s;
}

h1 {
  font-family: 'DTM-sans';
  text-shadow: 2px 1px #ff00ff99, -1px -1px #00ffff99;
  font-weight: 100;
  color: #462aaf;
  margin: 0;
  padding: 5px;  
}

h2 {
  font-family: 'dtm-sans', monospace;
  font-weight: bold;
  background: -webkit-linear-gradient(magenta 20%, cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 1px;
  margin-bottom: 5px;
  padding-top: 4px;
  padding-bottom: 3px; /* Don't delete this, this is so letters don't get cropped */
  filter: drop-shadow(2px 1px 0px #00ffff99);
}

h2:hover {
  background: -webkit-linear-gradient(fuchsia, cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  transition: 0.2s;
}
  
h3 {
  font-family: 'dtm-sans', monospace;
  font-weight: 100;
  font-size: 23px;
  text-shadow: 2px 1px #ff00ff99, -1px -1px #00ffff99;
  margin: 5px;
  line-height: 20px
}

h4 {
  margin: 8px 0px;
  background: -webkit-linear-gradient(#c400ff, #5fd3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
}

hr {
  border-top: 1px dashed cyan;
  border-bottom: 1px dashed fuchsia;
}

button {
  font-family: 'DTM-sans';
  font-size: 17px;
  color: white;
  background: #0c091a;
  box-shadow: 1px 1px magenta, -1px -1px cyan;
  border: #0c091a solid 2px;
  border-radius: 3px;
  padding: 3px 10px;
  cursor: pointer;
  margin: 2px;
  text-shadow: 0px 1px magenta, 0px -1px cyan;
}

button:hover{
  letter-spacing:0.5px;
  transition: 0.2s;
}

td {
  vertical-align: top;
}

::-moz-selection { /* Code for Firefox */
  color: fuchsia;
  background: cyan;
}

::selection {
  color: fuchsia;
  background: cyan;
}

/* ===== LISTS ===== */

li {
  padding-left: 3px;
  }

ul li::marker {
    content: "✦";
  }
  
.checklist li::marker {
    content: "✓";
}

.crosslist li::marker {
    content: "⨯";
}
  
div.numberlist {
  counter-reset: list-number;
  width: 80%;
}
div.numberlist div:before {
  counter-increment: list-number;
  content: counter(list-number);  
  margin-right: 10px;
  margin-top: 5px;
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content: center;
  font-size: 16px;
  background-color: #0c091a;
  border-radius: 50%;
  color: #fff;
  box-shadow: 1px 1px magenta, -1px -1px cyan;
}

/* ===== TOOLTIPS ===== */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted #5040b5;
}

.tooltip .tooltiptext {
  font-family: 'PixelOperator', monospace;
  visibility: hidden;
  min-width: 120px;
  width: 175px;
  background: #0c091af2;
  box-shadow: 2px 2px magenta, -2px -2px cyan;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 2;
  bottom: 150%;
  left: 15%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
  line-height: 12px;
  font-size: 14px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: fuchsia transparent transparent fuchsia;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* ===== HEADER AND FOOTER JUNK ===== */
.topnav {
  background: #0c091af2;
  box-shadow: 0px 5px magenta, 0px -5px cyan;
  overflow: hidden;
  margin: 22px auto;
  text-align: center;
  padding: 20px;
}

.topnav a {
  border-radius: 3px;
  color: cyan;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-size: 17px;
  text-shadow: 1px 1px #ff00ff99;
  font-family: 'dtm-sans', monospace;
  font-weight: 100;
}

.topnav a:hover {
  color: cyan;
  background-color: inherit;
  padding: 10px 15px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  text-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  transition: 0.2s;
}

.topnav .active {
  border: none;
  text-shadow: 1px 1px #00ffff99;
  background-color: fuchsia;
  color: white;
  padding: 10px 15px;
}

#sitename {
  color: white;
  font-weight: bold;
  font-size: 27px;
  /*background: -webkit-linear-gradient(cyan, fuchsia);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  margin: 15px;
  filter: drop-shadow(0px 0px 6px fuchsia);
  text-shadow: 1px 1px fuchsia, -1px -1px cyan;
}

#sitename:hover {
  /*background: -webkit-linear-gradient(fuchsia, cyan);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  text-shadow: 1px 1px cyan, -1px -1px fuchsia;
  transition: 0.2s;
}

footer {
  background: #0c091af2;
  box-shadow: 0px 5px magenta, 0px -5px cyan;
  /**overflow: hidden;*/
  margin: 17px auto;
  text-align: center;
  padding: 2px;
  }
  
  footer a {
  text-decoration: none;
  text-shadow: 0px 1px magenta, 0px -1px cyan;
  color: white;
  background: linear-gradient(transparent 50%, #ff00ff40 0%, #00ffff40 100%);
  border-radius: 10px;
  }
  
  footer a:visited {
    color: #ffffff;
  }

/* ===== CONTENT BAR THINGS ===== */

.sidebar-content {
  display: block;
  float: none;
  text-align: center;
  background-color: rgba(255,255,255,0.8);
  padding: 15px 10px 15px 10px;
  height: 100%;
  border-radius: 15px;
  margin-left: 15px;
  margin-right: 15px;
  border: 2px dotted fuchsia;
  box-shadow: 5px 5px magenta, -5px -5px cyan;
}

.solobar-content /*Use this for fics and other solo content bar thingies so they appear expanded on mobile*/ {
  display: block;
  float: none;
  text-align: center;
  background-color: rgba(255,255,255,0.8);
  padding: 15px 10px 15px 10px;
  height: 100%;
  border-radius: 15px;
  margin-left: 15px;
  margin-right: 15px;
  border: 2px dotted fuchsia;
  box-shadow: 5px 5px magenta, -5px -5px cyan;
}

.innerbox {
  display: block;
  float: none;
  text-align: center;
  background-color: rgba(255,255,255,0.75);
  padding: 20px;
  height: 100%;
  border-radius: 15px;
  margin: 10px auto;
  border: 2px dotted fuchsia;
  box-shadow: 1px 1px #ff00ff, -1px -1px #00ffff;
  overflow: auto;

}

.soloinnerbox /*USE TOGETHER WITH SOLOBAR-CONTENT*/ {
  display: block;
  float: none;
  text-align: center;
  background-color: rgba(255,255,255,0.75);
  padding: 20px;
  height: 100%;
  border-radius: 15px;
  margin: 10px auto;
  border: 2px dotted fuchsia;
  box-shadow: 1px 1px #ff00ff, -1px -1px #00ffff;
  overflow: auto;

}

.sidebar-group {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  height: 100%;
  width: 100%;
}

.solo-sidebar {
  display: block;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
  width: 50%;
  height: 100%;
}

#center-sidebar{
  width: 50%;
}

#right-sidebar{
  width: 25%;
  margin-right: 60px;
}

#left-sidebar{
  width: 25%;
  margin-left: 60px;
}

#footer {
  bottom: 0;
  left: 0;
  right: 0;
}

/* ===== CONTENT BAR CONTENT ===== */

  /* Images */
.zoom {
  transition: transform .5s;
  }

.zoom:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
  }

.imgcontainer {
  display: flex;
  align-items: center;
  flex-direction: column;
  }

.imgcontainer img {
  max-width: 100%;
  object-fit: contain;
  }

.imgdecor {
  position: relative;
  }

.dividergif {
  width: 100%;
  height: 50px;
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  }

.imgframe {
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  }

  /* Text */
.scrollbox {
  background-color: white;
  border-radius: 5px;
  box-shadow: 2px 2px #ff00ff99, -2px -2px #00ffff99;
  width: 30%;
  margin-bottom: 5px;
  padding: 7px;
  text-align: center;
  overflow: auto;
  }
  
.ScrollBoxGroup {
  display: flex;
  }

.centeredlist /*Use in the <ul> thingy */ {
  display: inline-block;
  text-align: left;
  }

textarea {
  width: 190px;
  height: 50px;
  color: #6139ff;
  background: linear-gradient(180deg, #FF00FF26, #00FFFF26);
  border: #917eff dashed 1px;
  border-radius: 5px;
  font-family: 'PixelOperator';
  font-size: 16px;
  text-shadow: 1px 1px white, -1px -1px white, -1px 1px white, 1px -1px white;
  padding: 2px 5px;
  }

.updatelog {
  background-color: white;
  height:300px;
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  width: 80%;
  margin: auto;
  padding: 7px;
  text-align: justify;
  overflow: auto;
  }
  
.blogtitle {
  margin-left: auto;
  text-align: left;
  line-height: 23px;
  }

.blogdate {
  padding: 0px 20px;
  margin: 0px;
  margin-bottom: -10px;
  }
  
.blogimg {
  vertical-align: middle;
  padding: 3px 10px 0px;
}

.blogimg img {
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  width: 100%;
  margin: 5px;
}

.cooltext {
  background: linear-gradient(transparent 50%, #ff00ff40 0%, #00ffff40 100%);
  border-radius: 10px;
  }

.coolbox {
  padding: 7px 15px;
  font-weight: 100;
  background: linear-gradient(#ff00ff40 0%, #00ffff40 100%);
  border-radius: 10px;
  box-shadow: 1px 1px #ff00ff80, -1px -1px #00ffff80;
  }
  
.storypreview {
  margin: 0px -10px;
}

.storypreview h4 {
  text-align: left;
  filter: drop-shadow(1px 0px 0px white) drop-shadow(-1px 0px 0px white) drop-shadow(0px 1px 0px white) drop-shadow(0px -1px 0px white);
  }
      
.storypreview p {
  text-align: left;
  }
  
.storypreview tr {
  display: block;
  margin-bottom: -5px;
  }
      
.storythumb img {
  height: 100px;
  width: 100px;
  object-fit: cover;
  }
  
.navarrows {
  font-size: 40px;
}
  
.navarrows a {
  text-decoration: none;
}  

/* ===== Yesterweb Ring CSS ===== */

.yw-widget-full {
  border-radius: 10px;
  border: white dashed 1px; 
  box-shadow: 3px 3px #ff00ff80, -3px -3px #00ffff80; 
  font-family: 'PixelOperator';
  color:white;
}

.yw-widget-full h4 {
  text-shadow: 1px 1px magenta, -1px -1px cyan;
  color: white;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: white;
  }
  
.yw-widget-full p {
  font-size: 17px;
  }

.yw-widget-full a {
  filter: brightness(5); /* I suppose that's one way to do it LOL */
  text-shadow: 0px 1px magenta, 0px -1px cyan;
  font-family: 'DTM-sans';
  text-decoration: none;
  font-weight: 100;
  font-size: 16px;
}

.yw-widget-full strong {
  text-shadow: 0px 1px magenta, 0px -1px cyan;
  font-weight: 100;
  }

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #ff00ff #0c091a;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 15px;
  }

  *::-webkit-scrollbar-track {
    background: #0c091a;
    border: 2px solid #0c091a;
    border-radius: 7px;    
  }

  *::-webkit-scrollbar-thumb {
    border: 2px solid #0c091a;
    background: linear-gradient(180deg, #ff00ff, #00ffff);
    border-radius: 7px;
  }
  
/* ===== Literature Section ===== */
  /* AO3 Tags toggle. Consider implementing some animation into this for a smoother transitioning?*/
  
  /* Edit - Smoother Transitioning was added, ToggleText is the old version of the code. I'm keeping it in case it can be used elsewhere */
#toggleText {
  display: none;
  margin-top: 10px;
}

.toggleLink {
  padding: 7px 15px;
  text-decoration: none;
  font-weight: 100;
  background: linear-gradient(#ff00ff40 0%, #00ffff40 100%);
  border-radius: 10px;
  box-shadow: 1px 1px #ff00ff80, -1px -1px #00ffff80;
}

.toggleLink:hover {
  color: fuchsia;
  cursor: pointer;
  transition: 0.2s;
}

/* Updated Toggle */
.collapsible {
  cursor: pointer; 
  padding: 7px 15px;
  text-decoration: none;
  font-weight: 100;
  background: linear-gradient(#ff00ff40 0%, #00ffff40 100%);
  border-radius: 10px;
  box-shadow: 1px 1px #ff00ff80, -1px -1px #00ffff80;
  border: none;
  color: #746ae6;  
}

.collapsible:hover {
  color: fuchsia;
  transition: 0.2s;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background: #e0d7f596;
  padding: 0 15px;
  border-radius: 15px;
  margin-top: 5px;
  box-shadow: 1px 1px #b7aee9, -1px -1px #b7aee9;
  }

  /* Text */
.fic {
  font-size: 17px;
  text-align: justify;
}

.nsfw {
  color: red;
  text-shadow: 1px 1px #6f6fff8c;
}

/* ===== IMAGE GALLERY NAVIGATION ===== */
div.gallery {
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  background-color: #0c091a;
  color: cyan;
  padding: 3px;
  margin: 0px 0px 4px 0px;
  transition: transform .5s;
}

div.gallery:hover {
  border-radius: 5px;
  box-shadow: 1px 1px #00ffff99, -1px -1px #ff00ff99;
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
  
}

div.gallery img {
  border-radius: 5px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.responsive {
  padding: 0 3px;
  float: left;
  width: 24.99999%;
  min-height: 258px;
}

.desc {
  letter-spacing: 1px;
  font-size: 18px;
}

.pixelart {
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
  transition: .5s;
  }

.pixelart:hover {
  image-rendering: -moz-crisp-edges;          /* Firefox                        */
  image-rendering: -o-crisp-edges;            /* Opera                          */
  image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
  image-rendering: pixelated; /* Chrome */
  -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
  filter: drop-shadow(4px -2px 0px rgba(0, 0, 0, 0.2));
  transform: scale(2);
  background-color: transparent;
  transition: .1s;
  }

/* ===== IMAGE GALLERY ===== */

.gallerygroup {
  display: flow-root;
  }

div.gallery2 {
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  background-color: #5040ae;
  color: fuchsia;
  padding: 3px;
  margin: 0px 0px 4px 0px;
  transition: transform .5s;
  }

div.gallery2:hover {
  border-radius: 5px;
  box-shadow: 1px 1px #00ffff99, -1px -1px #ff00ff99;
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
  }

div.gallery2 img {
  border-radius: 5px;
  width: 100%;
  height: 150px;
  object-fit: cover;
  }

div.gallery2:hover img {
  object-fit: contain;
  }

.imgdescription {
  color: #f4f3fb;
  padding: 1px;
  font-size: 15px;
  min-height: 2.6em;
  line-height: 12px;
  }

.imgdescription b {
  font-size: 13px;
  }

div.desc2 {
  padding: 5px;
  text-align: center;
}

.responsive2 {
  padding: 0 2.5px;
  float: left;
  width: 20%;
}

.gallerysimple img {
  border-radius: 15px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  height: 160px;
  transition: transform .5s;
}
  
.gallerysimple img:hover {
  box-shadow: 1px 1px #00ffff99, -1px -1px #ff00ff99;
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
}
    
/* ===== NEW GALLERIES ===== */    
.LightboxGallery img {
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  background: #5040ae;
  padding: 4px;
  height: 150px;
}

.LightboxGallery img:hover {
  box-shadow: 1px 1px #00ffff99, -1px -1px #ff00ff99;
  }

.LightboxGallery2 img { /*For transparent images*/
  padding: 4px;
}

.LightboxGalleryCommissions img {
  border-radius: 5px;
  box-shadow: 1px 1px #ff00ff99, -1px -1px #00ffff99;
  background: #5040ae;
  padding: 4px;
  height: 150px;
}

.LightboxGalleryCommissions img:hover {
  box-shadow: 1px 1px #00ffff99, -1px -1px #ff00ff99;
  }

/* ===== MARQUEE GALLERY ===== */
.scrollgallery {
  height: 200px;
  padding: 10px 0px;
  }
  
.scrollgallery img {
  height: 180px;
  }

/* ===== AUTOPLAY ===== */
.buttondiv{
  cursor: pointer;
  width: 35px;
  height: 35px;
  background-color: #0c091a;
  position: fixed;
  bottom: 5px;
  left: 5px;
  border-radius: 40px;
  z-index: 1;
}
  
.autoplayer button{
  width: 35px;
  height: 35px;
  background-color: #0c091a;
  position: fixed;
  bottom: 5px;
  left: 5px;
  box-shadow: 2px 2px fuchsia, -2px -2px cyan;
  border-radius: 40px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  color: white;
  padding: 1px 4px 0px 4px;
}

.autoplayer a {
  position: fixed;
  left: 50px;
  bottom: 5px;
  z-index: 1;
  background: #0c091a;
  padding: 2px 10px;
  border-radius: 5px;
  box-shadow: 2px 2px magenta, -2px -2px cyan;
  color: #6972b1;
  text-decoration: none;
}

/* ===== FLOATING ANIMATION ===== */

.floating{
  animation-name: floatingani;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  position: relative;
  bottom: 5px;
}
@keyframes floatingani{
  50%{
    transform: translateY(10px);
  }
}

.floatingrotate{
  animation-name: floatingrotate;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  position: relative;
  bottom: 5px;
}
@keyframes floatingrotate{
  50%{
    transform: translateY(10px);
    transform: rotate(5deg);
  }
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}


/* ===== SHAKING LETTERS. ===== */
.shakeletter1 {
  animation: shakeletter1 300ms linear 0ms infinite normal forwards;
  display: inline-block;
}

@keyframes shakeletter1 {
	0% { transform: translate(0);	}
	20% {	transform: translate(-1px, 1px); }
	40% {	transform: translate(-1px, -1px);	}
	60% {	transform: translate(1px, 1px);	}
	80% {	transform: translate(1px, -1px); }
	100% { transform: translate(0); }
}

.shakeletter2 {
  animation: shakeletter2 299ms linear 0ms infinite reverse backwards;
  display: inline-block;
}

@keyframes shakeletter2 {
	0% { transform: translate(0);	}
	20% {	transform: translate(-1px, 1px); }
	40% {	transform: translate(-1px, -1px);	}
	60% {	transform: translate(1px, 1px);	}
	80% {	transform: translate(1px, -1px); }
	100% { transform: translate(0); }
}

.shakeletter3 {
  animation: shakeletter3 301ms linear 0ms infinite alternate both;
  display: inline-block;
}

@keyframes shakeletter3 {
	0% { transform: translate(0);	}
	20% {	transform: translate(-1px, 1px); }
	40% {	transform: translate(-1px, -1px);	}
	60% {	transform: translate(1px, 1px);	}
	80% {	transform: translate(1px, -1px); }
	100% { transform: translate(0); }
}

  
/* ===== Pipis. ===== */

.pipis:hover {
  animation: shake 0.5s;
  animation-iteration-count: infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}


/* ===== Lightbox CSS ===== */
  /* All of this is to be adjusted until I figure out what does what */
  
  #lightbox{
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 100;
	text-align: center;
	line-height: 0;
  margin-top: -50px;
	}

#lightbox a img{ 
  border: none;
  }

#outerImageContainer{
	position: relative;
	background-color: #0c091a;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	box-shadow: 2px 2px magenta, -2px -2px cyan;
  border-radius: 10px;
  margin-bottom: 10px;
	}

#imageContainer{
	padding: 10px;
	}

#loading{
	position: absolute;
	top: 40%;
	left: 0%;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
	}
#hoverNav{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
	}
#imageContainer>#hoverNav{ left: 0;}
#hoverNav a{ outline: none;}

#prevLink, #nextLink{
	width: 49%;
	height: 100%;
	background: transparent url(../images/blank.gif) no-repeat; /* Trick IE into showing hover */
	display: block;
	}
#prevLink { left: -20 top 35%; float: left; /*transition: .5s;*/}
#nextLink { right: 15%; float: right; /*transition: .5s;*/}
#prevLink:hover, #prevLink:visited:hover { background: url(https://i.imgur.com/n6uRJka.gif) left 0% top 50% no-repeat;}
#nextLink:hover, #nextLink:visited:hover { background: url(https://i.imgur.com/CcGsGQF.gif) right 50% no-repeat;}


#imageDataContainer{
  margin: 0 auto;
  line-height: 1.1em;
  background-color: white;
  padding: 10px 0px 1px;
  border-radius: 15px;
  border: 2px dotted fuchsia;
  box-shadow: 1px 1px #ff00ff, -1px -1px #00ffff;
  min-width: 210px;
	}

#imageData{	padding:0 10px; color: #5040ae; }
#imageData #imageDetails{ width: 90%; float: left; text-align: left; }	
#imageData #caption{ font-weight: 100;}
#imageData #numberDisplay{ display: block; clear: left; padding: 0.2em 0em 0.5em; text-shadow: 1px 1px magenta, -1px -1px cyan; font-weight: bold;	}
#imageData #bottomNavClose{ float: right;  padding-bottom: 0.7em;	}	
		
#overlay{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100%;
	height: 500px;
	background-color: #000;
	}
	

/* Min-Width */
.lbWidth { /* most browsers */
	position: absolute;
	top: 0px; left: 0px;
	width: 100%;
	min-width: 790px;
	}

* html .lbContent { /* IE6 */
	margin-left: -790px;
	position:relative;
	}

* html .lbMinWidth { /* IE6 */
	padding-left: 790px;
	}	
	
/* Clearfix */	
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */ 

/* ===== Lightbox CSS ENDS HERE ===== */

@media only screen and (max-width: 1115px) {
  /* LAYOUT JUNK */
 
.topnav a:hover {
  padding: 10px;
}
 
a:hover{
  letter-spacing: 0px;
}
 
 
#center-sidebar{
  width: 75%;
}

#left-sidebar {
  margin-left: auto;
  padding-bottom: 20px;
}

#right-sidebar {
  margin-right: auto;
  padding-bottom: 20px;
}
 
.solo-sidebar {
  width: 80%;
}

.solobar-content {
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.soloinnerbox /*USE TOGETHER WITH SOLOBAR-CONTENT*/{
  padding-left: 15px;
  padding-right: 15px;
}
  
.scrollbox {
    width: 90%;
}
  
tr {
    width: 100%;
    display: grid;
}
  
td {
    width: 100% !important;
}
  
.ScrollBoxGroup {
  display: grid;
  width: 100%
}
  
.topnav a {
  line-height: 1.5;
}

  /* GALLERY STUFF */
.responsive {
  margin: 2px 0;
}
  
.responsive2 {
  width: 49.99999%;
  margin: 6px 0;
  min-height: auto;
}
  
div.gallery2 img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.imgdescription {
  min-height: auto;
  }
  
.bigpixel /* For pixel illustrations that get cropped out on smaller screens*/ {
  width: 100%
}
  
/* Misc */

.updatelog {
  width: 100%;
}

.imgdecor /* I cannot be bothered to line these up properly on smaller screens, sorry */ {
  display: none;
}


.storypreview td {
  width: auto !important;
}

}/* 1000PX RESPONSIVE ENDS HERE, STOP PUTTING THINGS UNDER THE WRONG BRACKET */


@media only screen and (max-width: 700px) {

  /* LAYOUT JUNK */
.sidebar-group {
  display: block;
}
  
#left-sidebar {
  width: 100%;
  margin-left: auto;
  padding-bottom: 20px;
}
  
#center-sidebar {
  width: 100%;
  padding-bottom: 20px;
}
  
#right-sidebar {
  width: 100%;
  margin-right: auto;
  padding-bottom: 20px;
}

.solo-sidebar {
  width: 100%;
}

.solobar-content {
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.soloinnerbox /*USE TOGETHER WITH SOLOBAR-CONTENT*/{
  padding-left: 15px;
  padding-right: 15px;
}

.fic {
  font-size: 17px;
}


tr {
    width: 100%;
    display: grid;
}

.topnav a {
  line-height: 1.5;
}

  /* GALLERY STUFF */
  
.responsive {
  width: 49.99999%;
  min-height: auto;
}
  
.responsive2 {
  width: 49.99999%;
  min-height: auto;
}  
    
div.gallery img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
  
div.gallery2 img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.imgdescription {
  min-height: auto;
  }
  
.LightboxGallery img {
  width: 100px;
  vertical-align: -webkit-baseline-middle;
  object-fit: cover;
  }

  /* For pixel illustrations that get cropped out on smaller screens*/
.bigpixel {
    width: 100%
}
  
  /* Misc. */

.updatelog {
  width: 100%;
}

.pipis {
  width: 100%;
  padding: 5px 5px 0px 5px;
}

.imgdecor {
  display: none;
}
  
}/* 1000PX RESPONSIVE ENDS HERE, STOP PUTTING THINGS UNDER THE WRONG BRACKET */



/* ==== Candidates for deletion aka I'm not sure if these are doing anything? ==== */
 
  /* ===== Flex box stuff I have no idea whether it's getting used or not?? what's a flex box anyway? That's a problem for future Jay to figure out. I think this has something to with the mobile responsive stuff?? ===== */
.flex-wrap {
  padding-left: 3px;
  padding-right: 3px;
}
.my-flex-wrapper {
  display: flex;
  width: 100%;
}

.my-flex-wrapper {
  flex-wrap: wrap;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
} 

/* === CANDIDATES FOR DELETION END HERE === */