<style>
body {
  font-family: Cursive;
  margin: 0;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #737070;
  color: white;
  padding: 1rem;
  text-align: center;
  position: sticky;
  top: 0;
  font-family: Cursive;
}

header .back {
  display: inline-block;
  color: #ccc;
  margin-top: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 20px;
  padding: 20px;
  font-family: Cursive;
}

.gallery img {
  width: 100%;              /* Makes it fill its grid cell */
  height: 100px;            /* Set a fixed height */
  object-fit: cover;        /* Crop to fill the box */
  border-radius: 8px;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery img:hover {
  transform: scale(1.05);
}

.album {
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.album span {
  display: block;
  margin-top: 8px;
  font-weight: bold;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.2);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
  padding: 1rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: 65%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.caption {
  color: #000000;
  margin-top: 15px;
  font-size: 1.1rem;
  text-align: center;
  font-family: Cursive;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
}

.nav-buttons {
  margin-top: 10px;
  display: flex;
  gap: 20px;
}

.nav-buttons button {
  background: #ffffff33;
  border: none;
  padding: 10px 20px;
  color: black;
  font-size: 1.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-buttons button:hover {
  background: #ffffff66;
}

.logo {
	width: 200px;
	height: auto;
}

</style>