body {
  background-color: #000000;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 30px;
  text-align: center;
}

h1 {
  color: #ffffff;
  text-shadow: 
  margin-bottom 30px;
}

h2{
  color: #ffffff;
  text-shadow: 
  margin-bottom 30px;
}
.photo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1000px;
  margin: 0 auto;
}

.photo-grid img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.photo-grid img:hover {
  transform: scale(1.05);
}

/* Modal (full-res image view) */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.85);
}

.modal-content {
  display: block;
  margin: 60px auto;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

#caption {
  margin: 10px auto;
  padding: 10px;
  max-width: 80%;
  color: #fff;
  font-size: 18px;
  font-style: italic;
  text-shadow: 1px 1px #000;
}

/* Close button */
.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #7369ff;
}
