.liminality-gallery {
  max-height: 60vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
}

.travelpics{
  display: block;
  flex-direction: column;
  gap: 10px;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  background: #220022;
  border: 3px solid hotpink;
  padding: 20px;
  max-width: 700px;
  max-height: 80vh;
  overflow-y: auto;
  color: cyan;
}

.close-btn {
  background: hotpink;
  border: none;
  padding: 8px 12px;
  margin-top: 10px;
  cursor: pointer;
}

.modal.show .close-btn {
  display: inline-block; /* show only when modal has 'show' class */
}

.linkeroos{
	text-decoration: none;
	margin:10px;
  width:10%;
  height: 10%;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  padding: 20px;
  box-sizing: border-box;
  justify-items: center;
}

.picturelinks {
  width: 100%;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s;
}

.picturelinks:hover {
  transform: scale(1.05);
}

