html, body {
	height: 100%;
	width: 100%;
}

html {
	font-size: 16px;
	line-height: 1.4rem;
	font-family: 'Josefin Sans', sans-serif;
}

body{
	background-color: #FFFCF6;
	max-width: 90%;
	margin: 0 auto;
	overflow-x: hidden;
}

h1 {
	color: #3b2c1d;
	line-height: 2rem;
	padding-top: 1.5rem;
}

p {
	color: #3D4738;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 300;
}

img {
	width: 100%;
	max-width: 400px;
	border-radius: .2rem;
	margin: auto;
}

.main-image {
	width: 100%;
	max-width: 350px;
	border-radius: .2rem;
	margin: auto;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
    
    
}
.header {
  text-align: center;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2rem 0;
  justify-items: center;
}

.gallery-image {
  width: 100%;
  max-width: 500px;
  height: 500px;
  object-fit: contain;
  object-position: center;
  border-radius: 0.2rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.25rem;
}


.hidden {
  display: none;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: 1fr;
  }

  .gallery-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

.audio-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #000000;
  position: relative;
  cursor: pointer;
}

.play-button::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 14px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.play-button:hover {
  background-color: #ee6a05;
}