body{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.album{
  min-height: calc(100vh - 110px);
  background-color: peachpuff;
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 40px;
  padding: 0 20px;
  color: darkblue;
  font-weight: bold;
  line-height: 1.8;             
}

.album-title h1{
  background: white;
  padding: 12px 20px;
  border-radius: 20px;
  display: inline-block;
  font-size: 32px;
  margin-bottom: 30px;
}

.album-photo{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.album figure{
  overflow: hidden;
  border-radius: 6px;
}

.album img{
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.album figure:hover{
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);

}

.album figure:hover img{
  transform: scale(1.05);
}

.album figcaption{
  margin-top: 8px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}


@media (max-width: 1024px){

  .album{
    min-height: calc(100vh - 50px);
    height: auto;
    padding: 20px;
    margin: 50px auto 40px;
  }

  .album h1{
    font-size: 24px;
  }

  .album{
    grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
  }
}
