/* Modern CSS Reset (simplified version) */
/* Remove default margin, padding, and set box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol, menu elements */
ul,
ol,
menu {
  list-style: none;
  padding-left: 0;
}

/* Set defaults for HTML5 elements */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Ensure images and media don't overflow their container */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove border and appearance for buttons */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Set base font size and family */
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove all animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background: #000;
  overflow-x: hidden;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: max(18vh, 140px);
  grid-auto-flow: dense;
  gap: 2px;
}
.gallery .large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery .wide {
  grid-column: span 2;
}
.gallery .large.wide {
  grid-column: span 3;
  grid-row: span 2;
}
.gallery .tall {
  grid-row: span 2;
}
.gallery .fill img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.gallery .sticker,
.gallery .fit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery .sticker img,
.gallery .fit img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.gallery .fit {
  padding: 1.5vw;
}
.gallery .sticker {
  padding: 2.5vw;
  overflow: visible;
  z-index: 5;
}
.gallery .sticker img {
  transform: rotate(random(-15deg, 15deg)) scale(1.1);
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.6));
}
.gallery figcaption {
  display: none;
}
@media (min-width: 480px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 960px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1600px) {
  .gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 2400px) {
  .gallery {
    grid-template-columns: repeat(7, 1fr);
  }
}/*# sourceMappingURL=main.css.map */