/* From Uiverse.io by alexruix */ 
.card {
  width: 180px;
  height: 200px;
  border-radius: 20px;
  background: --background-color;
  position: relative;
  padding: 1.8rem;
  border: 2px solid #c3c6ce;
  transition: 0.25s ease-out;
  overflow: visible;
  margin: 1rem;
  text-decoration: none;
 }
 
 .card-details {
  color: --text-color;
  height: 100%;
  gap: .5em;
  display: grid;
  place-content: center;
 }
 
 .text-body {
  color: rgb(134, 134, 134);
 }
 
 /*Text*/
 .text-title {
  font-size: 1.5em;
  font-weight: bold;
 }
 
 /*Hover*/
 .card:hover {
  cursor: pointer; 
  transform: scale(1.05);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
 }