
.main img {
  width: 400px;
  height: 225px;
  object-fit: cover;
  margin: 10px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

.main img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

@media screen and (max-width: 768px) {
  .main img {
    width: 90%;
  }

  .main h1 {
    font-size: 32px;
  }
}
