/* style.css */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.card {
  background-color: #FEE2FD;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  margin: 20px;
  padding: 20px;
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease-in-out;
}

.card img {
  max-width: 100%;
  transition: transform 0.3s ease-in-out;
}

.card h2 {
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
}

.card:hover img {
  transform: translateY(-10px);
}

.card:active {
  transform: scale(0.95);
}

.card a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
}