﻿<style>
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #fdfdfd;
    text-align: center;
  }

  h1 {
    margin-bottom: 30px;
  }

  .gallery {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, 1fr); /* Mobile default */
  }

  .gallery img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }

  .gallery img:hover {
    transform: scale(1.03);
  }

  /* Tablet */
  @media (min-width: 768px) {
    .gallery {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  /* Desktop */
  @media (min-width: 1200px) {
    .gallery {
      grid-template-columns: repeat(5, 1fr);
    }
  }
</style>
