.card {
    box-shadow: 0 4px 8px 4px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    max-width: 200px;
    margin: auto;
    text-align: center;
    font-family: arial;
  }
  .card img{
    box-shadow: 0 4px 8px 0px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin-top: 5%;
    border-radius:8%;
    width:50%;
  }      
  .card .title {
    color: grey;
    font-size: 14px;
  }    
  .card p {
    font-size: 14px;
  }  
  .card button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 8px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  } 
  .card a {
    text-decoration: none;
    font-size: 22px;
    color: black;
  }
  .card button:hover, a:hover {
    opacity: 0.7;
  }