body {
  font-family: sans-serif;
  padding: 20px;
  text-align: center;
  background-color: #e0e0e0;
}

.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.photo-card {
  max-width: 500px;
  width: 90vw;
  box-shadow: 5px 5px 0 #000;
  border-radius: 16px;
  overflow: hidden;
  background: #fff; border: 2px solid #000;
  margin-bottom: 20px;
}

.photo-card img {
  width: 100%;
  display: block;
}

#loadMore {
  margin: 30px auto;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.page-title-bar {
        width: 100%;
        background: #000;
        color: #fff;
        font-family: 'Atkinson Hyperlegible', sans-serif;
        font-size: 16px;
        font-weight: bold;
        padding: 8px 16px;
        box-shadow: 0 2px 0 #000;
        display: flex;
        align-items: center;
        justify-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
      }

 .content {
        /*
        display: flex;
        flex-direction: column;
        align-items: center;
        */
        width: 100%;
        margin-top: 60px;
      }


.filename {
  font-family: 'Atkinson Hyperlegible', sans-serif;
  font-size: 20px;
  font-weight: bold;
  background: skyblue ;
  color: #444;
  padding: 10px;
  margin-bottom: 0px;
  text-align: center;
  border-radius: 8px 8px 0 0;
}