Changed around line 1
+ .gallery {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 20px;
+ justify-content: center;
+ }
+
+ .photo {
+ width: 300px;
+ height: 300px;
+ overflow: hidden;
+ border-radius: 8px;
+ box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .photo img {
+ width: 100%;
+ height: 100%;
+ object-fit: cover;
+ }
+
+ .photo:hover {
+ transform: scale(1.05);
+ }