body {
  font-family: Arial, sans-serif;
  background: grey;
}

/* Layout */
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

/* Card */
.card {
  position: relative;
  width: 250px;
  height: 350px;
  overflow: hidden;
  border-radius: 10px;
}

/* Front image */
.card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Back overlay */
.card figcaption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
  padding: 10px;
}

/* Show on hover */
.card:hover figcaption {
  opacity: 1;
}

/* Back image */
.card figcaption img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

/* Text */
.card figcaption p {
  margin-top: 10px;
}