body {
  margin: 0;
  font-family: Georgia, serif;
  background-color: #eedcff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2 {
  margin-top: 20px;
  text-align: center;
  color: #000000;
}

.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  max-width: 1200px;
}

.card {
  background-color: white;
  border: 3px solid #71bf79;
  border-radius: 10px;
  width: 300px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  width: 100%;
  border-radius: 6px;
}

.card p {
  color: #333;
  line-height: 1.4;
}
