body {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: beige;
  font-family: Arial, sans-serif;
}

.heading{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 45px;
  font-style: italic ;
  font-weight: 600;
  color: #4B352A;

}
.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;

}

.image-container img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border: 3px solid #4B352A;
  border-radius: 10px;
  padding: 5px;
  background-color: #f5f5dc;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.image-container img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.btn {
  background-color: brown;
  border: none;
  padding: 12px 24px;
  margin: 25px;
  color: white;
  font-size: 18px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
  background-color: #8b4513;
  transform: translateY(-2px);
}