
.card {
  border: none;
  width: 18rem;
}

.card p.text-sm {
  font-size: 12px;
}

.fade-in-bottom {
  opacity: 0.3;
  transform: translateY(50px);
  animation: fadeInBottom 1s ease-out forwards;
}

@keyframes fadeInBottom {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
