/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: whitesmoke;
  font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
}

.desc .full-text {
  display: none;  /* hide initially */
  margin-top: 8px;
}

.read-more {
  background: none;
  border: none;
  color: magenta;
  cursor: pointer;
  padding: 0;
  font-size: 0.9em;
}

h1 {text-align: center;}
h2 {text-align: center;}

.gallery {
  max-width: 900px;   
  margin: 0 auto 40px auto;
}

.gallery.standard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery.tall {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.gallery img {
  max-width: 100%;
  height: auto;
  display: block;
}

#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

#lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}