body {
  font-family: Arial, sans-serif;
  text-align: center;
  background-color: #40cabf;
  padding: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.image-container img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.image-container img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

#result {
  margin-top: 30px;
  font-size: 24px;
  color: #111;
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
  .image-container {
    gap: 15px;
  }

  .image-container img {
    width: 120px;
    height: 120px;
  }

  h1 {
    font-size: 1.5rem;
  }

  #result {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .image-container img {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.3rem;
  }
}
