.card {
  height: 300px;
  background: rgb(173, 173, 173);
  position: relative;
  border-radius: 0.2rem;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 80px;
  padding: 1rem;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(25px);
  border-radius: 0;
  transform: scale(1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.content p {
  font-size: 1em;
}
.card:hover .content {
  transform: scale(0.95);
  bottom: 6px;
  height: 170px;
  border-radius: 0.8rem;
}