body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-image: linear-gradient(135deg, #f7c289, #f7696b);
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 36px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-card {
  background-color: #fff;
  border-radius: 10px;
  margin: 10px;
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
}

.image-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-title {
  font-size: 24px;
  margin-top: 10px;
}

.image-description {
  font-size: 16px;
  color: #666;
}
.image-card4 {
  background-color: #fff;
  border-radius: 10px;
  margin: 10px;
  padding: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 290px;
}
.image-card4:hover img {
  transform: scale(1.05);
}

.image-card4 img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s;
}