/***
EZ Gallery by netfriend - https://netfriend.neocities.org/ez-gallery/
Released under the Unlicense - https://unlicense.org/
***/
main {
  display:initial;
}
.featart {
  max-width:9em;
  height:auto;
}

.tooltip {
  padding:10px;
}
aside ul, aside ul ul {
text-align:start;
padding:initial;
}

aside li {
  list-style-type:none;
  font-size:larger;
  font-family:'angels';
}

aside li li {
  font-size:initial;
  font-family:'Ms Ui Gothic';
  margin-top:10px;
}

aside li:not(:first-child) {
  margin-top:15px;
}
.ezgallery.montage { 
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align:center;
}

.ezgallery.montage img {
  object-fit: contain;
  object-position: bottom;
  width:100%;
  flex: 30%;
  max-width:20%;
  transition:transform .5s;
}

.ezgallery.montage img:hover {
transform:scale(1.2);
}

.ezgallery.horizontal { 
  display: grid;
  grid-gap: 5px;
  gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-auto-rows: minmax(100px, auto);
}

.ezgallery.horizontal a {
  text-align: center;
}

.ezgallery.horizontal img {
  text-align: center;
  vertical-align: middle;
  margin: 0 5px 5px 0;
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
  object-position: bottom;
}

@media only screen and (max-width: 900px) {
    .ezgallery.montage img {
        flex: 100%;
        max-width: 100%;
    }

}