.card {
    /* Add shadows to create the "card" effect */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    max-width: 600px;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  
  /* On mouse-over, add a deeper shadow */
  .card:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
  }
  
  /* Add some padding inside the card container */
  .container-card {
    padding: 2px 16px;
  }

  .card-title
  {
      padding-top:10px;
      text-align: left;

  }

  .card-text
  {
    max-width: 560px;
    padding-bottom: 15px;
    height: auto !important;
    text-align: left;

  }

  .card-image
  {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
  }

  .card-data
  {
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;

  }

  .card-footer
  {
      height: 55px;
  }

  .card-button
  {
    background-color: #e74c3c;
    border: solid 1px #c0392b;
    border-radius: 5px;
    padding: 5px;
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 10px;
    display: table;
    margin-left: 15px;
    margin-bottom: 15px;
    
  }

  .card-button a{
      color: white !important;
  }
  .card-button a:hover {
      color: white !important;
  }