<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.album{
  position: fixed;
  top: 4vh;
  width: 100vw;
  height: 96vh;
  /*padding: 1vh 1vw 1vh 1vw;*/
  border-top: 1px solid black;
  overflow-y: scroll;
  padding-left: 0px;
  background-color: white;
}

.album-gallery {
  position: absolute;
  top: 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: top;
  margin: 0vh auto;
  grid-gap: 0rem;
  max-width: 100vw;
  justify-content: center;
}

#films-wrapper{
  top: 94vh ;
}

li{
  margin-bottom: -5px;
}

.album-gallery[data-even] {
  grid-template-columns: repeat(4, 1fr);
}
.album-gallery[data-count="1"] {
  grid-template-columns: 1fr;
}
.album-gallery[data-count="2"] {
  grid-template-columns: 1fr 1fr;
}
</pre></body></html>