.card{
    width:100%;
    max-width:500px;
    border: 2px solid lightgrey;
    border-radius:0.5rem;
    padding:2rem;  
    z-index: 500; 
  }

  span.overlay {
    font-family: var(--font-general);;
    text-align: center;
    display: flex;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0);
    position: absolute;
    z-index: 500;
    align-items: center;
    opacity: 0;
}

  .titulo{
    margin:0;
    text-align:left;
    font-size:1.5rem;    
  }
  .descripcion{
    text-align:left;
  }
  .imagen{
    transform: scale(var(--escala, 1));
    transition: transform 0.5s;
  }
  .imagen:hover{
    --escala: 1.2;
    cursor:pointer;
  }