/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;;
  background: rgba(216, 191, 216, 0.531);
  color: #333;
}

/* Header */
header, footer {
  text-align: center;
  padding: 20px;
  background: plum;
  color: white;
}
footer {
  font-size: 15px;      
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  padding: 10px;
  justify-items: center;
  align-items: center;
}
.gallery img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  
}

.gallery img:nth-child(1) {
  grid-column: span 2;
}
.gallery img:nth-child(5) {
  grid-row: span 2;
} 

@media (max-width: 768px) {
.gallery {
    grid-template-columns: repeat(2, 1fr);
}
}


@media (max-width: 480px) {
.gallery {
    grid-template-columns: 1fr;
}
}
