body {
  margin: 0;
  background-color: white;
  color: black;
}

.accueil {
  margin: 40px;
  display: flex;
  align-items: flex-start;
}

.intro {
  width: 200px;
  flex-shrink: 0;
}

h1 {
  margin: 0;
  font-family: "Times New Roman", Times, serif;
  font-size: 17px;
  font-weight: normal;
  letter-spacing: 5px;
  text-align: left;
}

.description {
  margin-top: 30px;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}

.description p {
  margin: 0;
  color: #333333;
  font-size: 12px;
  font-weight: bold;
}

.description span {
  display: block;
  margin-top: 2px;
  color: #444;
  font-size: 10px;
  font-weight: 300;
  opacity: 0.6;
}

.photos {
  flex: 1;
  column-count: 3;
  column-gap: 15px;
}

.photos img {
  width: 100%;
  margin-bottom: 15px;
  display: block;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.photos img:hover {
  opacity: 0.8;
}

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

.lightbox img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 85vh;
  margin: 0;
  display: block;
}

.lightbox p {
  margin: 12px 0 0 0;
}

#lightbox-caption {
  margin-top: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: white;
  opacity: 0.75;
}