body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f9f9f9;
  }
  
  h1 {
    margin: 20px 0;
    font-size: 24px;
    color: #333;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    padding: 20px;
  }
  
  .gallery-item {
    overflow: hidden;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
  }
  
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .gallery-item img:hover {
    transform: scale(1.1);
  }
  