.Archive-content{
  align-items: center;
  justify-items: center;
  text-align: center;
}

.archivesHeader{
  margin-top: 4%;
  font-size: 10vh;
  letter-spacing: 5px;
  font-family: 'PP Neue Corp Wide', serif;
  color: rgba(0,0,0);
  background: rgba(255, 256, 250, .8);
  display: flex;
  padding: 0 0 0 5%;
  width: 100vw;
  transition: all ease 0.3s;
  box-shadow: 0 3px 1px -2px rgba(0,0,0, .9);
}

.archivesHeader img{
  width: 8vw;
  height: auto;
  padding-right: 14px;
}

#gallery {
  margin-top: 3%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 20px;
}

.gallery-item {
  width: 250px;
  height: 300px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.19);
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.07);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  display: block;
  margin: auto;
}

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