  body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
  }
  h1 {
    text-align: center;
    margin-bottom: 30px;
  }
  .album-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .album {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 200px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
  }
  .album:hover {
    transform: scale(1.05);
  }
  .album img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  .album h3 {
    margin: 10px 0 5px;
  }
  .album p {
    margin: 0 10px 10px;
    color: #555;
  }
  .album a {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 6px;
  }
  .album a:hover {
    background-color: #0056b3;
  }