body {
  background-color: #16171D;
  background-image: url(img/bg/blackgranite.gif);
  background-size: 128px;
  color: rgb(155, 155, 155);
  font-family: "Cascadia Code", sans-serif;
  animation: fade-in 1.5s;
  text-shadow: -0.06em 0 0.5px rgba(46, 46, 46, 0.9);

  max-width: 48em;
  margin-left: auto;
  margin-right: auto;
}

a:visited, a:link, a:active {
  color: rgb(64, 100, 219);
  text-decoration: none;
  transition: ease-in-out 0.2s;
  text-shadow: 0.06em 0 0.5px rgba(53, 0, 200, 0.5);
}

a:hover {
  color: rgb(57, 187, 219);
  text-shadow: -0.06em 0 0.5px rgba(106, 220, 255, 0.9);
}

.abar {
  text-align: center;
  font-size: 20px;
  padding: 0;
  margin: 0;
}

.center {
  margin-right: auto;
  margin-left: auto;
  width: auto;
  display: block;
}

iframe {
  margin-right: auto;
  margin-left: auto;
  display: block;
  border-style:none;
}

.image {
  padding-top: 15px;
  padding-bottom: 15px;
}

.image-half-center {
  width: 50%;
  height: 50%;
  text-align: center;
}

.image-center {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  width: auto;
  height: auto;
}

.banner {
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.banner-img-left {
  position: relative;
  top:-45px;
  left: 100px;
}

.banner-img-right {
  position: relative;
  top:-45px;
  left: -100px;
}

.zine-images {
  margin-left: auto ;
  margin-right: auto ;
  display: flex;
  align-items: center;
  animation-duration: 3s;
  max-width: 90%;
}

.zine-image {
  padding: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.zine-image img {
  width: 100%;
  box-shadow: 0.06rem 0.12rem 0 rgba(16, 18, 131, 0.5), 0 0.06rem 0 rgba(173, 28, 179, 0.5),
    0 0 5px rgba(0, 0, 0, 0.4);
  transition: ease-in-out 0.2s;
}

.zine-image img:active {
  filter: hue-rotate(30deg);
  transform: scale(1.2);
  box-shadow: 0.06rem 0.12rem 0 rgba(21, 23, 175, 0.5), 0 0.06rem 0 rgba(112, 50, 182, 0.5)
    0 9pt 8px rgba(0, 0, 0, 0.28);
}

h1 {
  text-align: center;
  font-family: "Cascadia Code", sans-serif;
  color: rgb(0, 140, 255);
}

hr.solid {
  border: 2px solid rgb(15, 227, 255);
  border-radius: 5px;
  width: 30%;
  margin-top: 40px;
  margin-bottom: 40px;
}

.fade {
  position: relative;
  text-align: center;
  color:rgb(0, 180, 0);
}

.fade span {
  position: absolute;
  transform: translateX(-50%);
  transition: ease-in-out .5s;
}

.fade span:nth-child(2) {
  opacity: 0;
}

.fade span:nth-child(1) {
  opacity: 1;
}

.fade:hover span:nth-child(2) {
  opacity: 1;
}

.fade:hover span:nth-child(1) {
  opacity: 0;
}

@keyframes fade-in {
  from { opacity: 0; filter: blur(0.2px); }
  to { opacity: 1; }
}

@media (max-aspect-ratio: 7/8) {
  body {
    background-image: url(img/bg/blackgranite.gif);
    background-size: 6px;
  }
  .zine-images {
    flex-direction: column;
  }
  .fade {
      padding-bottom: 2em;
  }
}
