@import url("/static/modal.css");

html, body {
  padding: 0;
  margin: 0;
  background: #707070;
}

#content {
  display: flex;
  justify-content: center;
}

img {
  width: 350px;
  height: auto;
}

.htmx-settling img {
  opacity: 0;
}
img {
  transition: opacity 300ms ease-in;
}

img.lazy-image {
  background: transparent url(/static/bars.svg) no-repeat scroll center center;
}
img.loading {
  background: transparent url(/static/bars.svg) no-repeat scroll center center;
}

.gallary-container {
  display: flex;
  gap: 20px;
}
.gallary-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 350px;
}

.thumbnail-wrapper img {
  border-radius: 15px;
  border: 5px solid #f5f5f5;
  cursor: pointer;
}
