.card { 
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-gap: 30px;
    align-items: stretch;
    
    font-family: roboto;
    text-align: center;
    
    -webkit-transition: transform 2s ease-in-out;
    transition: transform 2s ease;
    border-radius: 18px;
    
    }

  .card-single { 
    display: block;
    /* align-items: center; */
    margin: auto;
    width: 50%;
    
    font-family: roboto;
    text-align: center;
    
    -webkit-transition: transform 2s ease-in-out;
    transition: transform 2s ease;
    border-radius: 18px;
    
    }
    
  .card > article:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
  }

  .card-single > article:hover {
    box-shadow: 5px 5px 15px rgba(0,0,0,0.6);
  }
    
  .card > article {
    border-radius: 18px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
    background: white;
  }


  .card-single > article {
    border-radius: 18px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3);
    background: white;
  }

  .card > article img {
    width: 100%;
    height: 200px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
  }

  .card-single > article img {
    width: 100%;
    height: 300px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* border-radius: 15px; */
  }


  .card-text {
    padding: 0 20px 20px;
  }

  
    
  .card-text p {
    color: grey;
    /* color: #D4AF37; */
    font-size:15px;
    font-weight: 300;
  }
    
  .card-text h2 {
    margin-top:0px;
    font-size:28px;
  }
    
  .card-text > button {
    background: rgb(0, 189, 63);
    border: 0;
    color: white;
    padding: 10px;
    width: 100%;
  }