body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f0f0f0; /* light gray example */
}
.hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}
.hero-text {
  text-align: center;
  padding-top: 10%;
  color: white;
}
nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: #ADD8E6; /*setting the color to light blue, used to be #eee for gray*/
}
.gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}
.faq-answer {
  display: none;
}
#faq button {
  display: block;
  margin: 1em 0 0.3em;
}

