html 

/* Images */
a:hover > .chara, a:hover > .extra, .Gallery:hover, #zine:hover, .gallery div:hover {
    transition: 0.1s;
    rotate: -20deg;
}

#zine {
    height: 100px;
}

#flip:hover, #flip:focus {
    rotate: 180deg;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 5px;
  max-width: 85%;
}

.gallery div {
    margin: 5px;
    cursor: pointer;
    max-height: 100px;
	max-width:	100px;
    margin: 5px;
	object-fit: cover;
}

.gallery a {
  cursor: pointer;
}

.gallery .item strong {
  display: block;
  font-size: 1.5em;
  text-align: center;
}

.gallery img {
    height: 100px;
	width:	100px;
    margin: 5px auto;
	object-fit: cover;
}

.lightbox {
  background: rgba(0, 0, 0, 0.8);
  display: none;
  position: fixed;
  z-index: 1000;
}

.lightbox:target {
  align-items: center;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
  top: 0;
}

.lightbox img {
  display: block;
  margin: auto;
  max-height: 80vh;
  max-width: 90vh;
}

.lightbox .close {
  color: #fd8675;
  font-size: 4em;
  font-weight: bold;
  height: 1em;
  position: fixed;
  right: 0;
  top: 0;
  width: 1em;
  z-index: 1001;
}

.lightbox p {
  text-align: center;
}