#title {
  font-size: 4em;
  font-weight: 400;
  padding: 200px 0 100px 0;
}

#photos {
  width: 100%;
  margin: 0;
  line-height: 0;
  display: inline-block;
  -webkit-column-count: 4;
          column-count: 4;
  -webkit-column-gap: 16px;
          column-gap: 16px;
}

#photos img {
  margin-bottom: 16px;
  vertical-align: middle;
  width: 100% !important;
  height: auto !important;
  background: #241e1e;
}

@media screen and (max-width: 1450px) {
  #photos {
    -webkit-column-count: 3;
            column-count: 3;
  }
}

@media screen and (max-width: 1050px) {
  #photos {
    -webkit-column-count: 2;
            column-count: 2;
  }
}

@media screen and (max-width: 700px) {
  #photos {
    -webkit-column-count: 1;
            column-count: 1;
  }
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #f2ebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  pointer-events: none;
}

#loading p {
  font-size: 2em;
}

/* Add these styles to your existing css/gallery.css */

#upload-instructions {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1em;
    line-height: 1.5;
}

#upload-instructions a {
    color: #241e1e;
    text-decoration: underline;
    font-weight: bold;
}

#upload-instructions a:hover {
    text-decoration: none;
}

#photos img {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#photos img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Loading animation for individual images */
#photos img {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Error message styling */
#photos p {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    grid-column: 1 / -1;
}

/* Responsive adjustments */
@media screen and (max-width: 450px) {
    #upload-instructions {
        font-size: 1em;
        margin-bottom: 30px;
    }
}
/*# sourceMappingURL=gallery.css.map */