body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #dddddd;
  color: #CD716B;
}
h1{

  font-size: 2.5rem;

}

h2 {
  color: #3A5BA5;
  text-align: center;
}

header {
  background: #D2E6CA;
  color: #CD716B;
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  top: 0;
  z-index: 1000;
}
#town {
  font-family: 'Great Vibes', cursive;
  font-size: 2.5rem;
  padding: 0rem;
  line-height: 1rem;
}
section {
  padding: 2rem 1rem;
  max-width: 900px;
  margin: auto;
}

.panorama {
  width: 100%;
  height: 20rem;
  background-color: #D2E6CA;
}

.images {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.images img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

.video-wrapper {
  position: relative;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

video, iframe {
  width: 100%;
  border-radius: 10px;
}

.fullscreen-img {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fullscreen-img:hover {
  transform: scale(1.03);
}

footer {
  padding-top: 2rem;
  text-align: center;
  position: relative;
}

/* Optional host-level tweaks for the custom element */
reusable-slideshow {
  display: block;
  max-width: 900px;
  margin: 0 auto 1rem;
}

/* Mobile */
@media (max-width: 600px) {
  header h1 {
    font-size: 1.5rem;
  }

  .images img {
    max-width: 90%;
  }

  video, iframe {
    max-width: 100%;
  }

  .panorama {
    height: 250px;
  }
}
