
body{
  margin:0;
  background:#0f1720;
  font-family:system-ui, sans-serif;
  color:white;
}

.topbar{
  position:fixed;
  top:20px;
  left:0;
  right:0;
  text-align:center;
  z-index:10;
}

.audioBtn{
  font-size:34px;
  padding:18px 28px;
  border-radius:50px;
  border:none;
  background:#ffb703;
  color:#111;
  cursor:pointer;
  box-shadow:0 8px 30px rgba(0,0,0,.4);
}

.gallery{
  padding-top:120px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:60px;
  padding-bottom:80px;
}

.gallery img{
  width:900px;
  max-width:92vw;
  height:auto;
  display:block;
  box-shadow:0 30px 60px rgba(0,0,0,.5);
  border-radius:6px;
  transition:transform .2s ease;
}

.gallery img:hover{
  transform:scale(1.02);
}
