.nav-active {
  font-weight: 600;
  color: #01a555;
}

.nav-active:hover {
  color: #01a555;
}

.cust-link:hover {
  color: #01a555;
}

.cust-navbar {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.gallery-container {
  height: 100dvh;
  overflow-y: scroll;
}

.header {
  background: linear-gradient(90deg, #145a32, #27ae60);
}

.hidden {
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.image-container img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 5px;
  z-index: -1;
}

.image-container:hover .hidden {
  display: flex;
}