body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #131212; /* Set background color to black */
  color: white; /* Set text color to white */
}

.navbar {
  background-color: rgba(0,0,0,0.95);
}

.photo-gallery {
  padding: 100px 20px 20px; /* Adjust padding to account for the fixed navbar */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.photo-item {
  margin: 10px;
  position: relative;
  max-height: 300px; /* Adjust as needed */
  max-width: 600px;
  overflow: hidden;
}

.photo-item img {
  width: 100%;
  max-height: 300px;
  display: block;
}

/*
.photo-caption {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
  display: none;
}


.photo-item:hover .photo-caption {
  display: block; 
}
*/


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1001;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
}

.lightbox-content img {
  width: 100%;
  height: auto;
}

/* Responsive styles for mobile phones */
@media (max-width: 480px) {
  .accordion {
    width: 100%;
    margin: 0;
    padding: 50px 0 0; /* Adjust the padding to make space for the fixed navbar */
    box-sizing: border-box;
  }
  
}