	body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  text-align: center;
  background: #000;
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-item {
  margin: 10px;
  flex-basis: 100%;
  max-width: 1000px;
}
.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}



@media (min-width: 768px) {
  .gallery-item {
	flex-basis: 90%;
	max-width: 1200px;
  }
}

@media (min-width: 1024px) {
  .gallery-item {
	flex-basis: 50%;
	max-width: 600px;
  }
}

@font-face {
  font-family: 'Fern Web';
    src: url('fonts/FernVariable-Roman-VF.woff2') format("woff2"),
   url('fonts/FernVariable-Roman-VF.woff') format("woff");
  /* Add other font formats and sources if available */
}



.intro {
  width: 85%;
  margin: auto;
  }
h4 {
font-family: 'Fern Web';
font-style: normal;


  font-size: 50px; /* Default font size */
  padding-top: 75px;
  margin-bottom: 0;
  line-height: 85%;
  color: #fff;

}

p {
  font-family: 'Fern Web', sans-serif;
  font-size: 25px; /* Default font size */
  padding-top: 75px;
  padding-bottom: 75px;
  color: #fff;
}

a {
  color: #fff;
}