.card {
    padding: 2px;
    border: none;
    padding: 0;
}
.card a {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: center;
}
/* Text div for cards that have photos */
.photoCard {
    width: 100%;
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    padding: 0.4em;
    font-size: 16pt;
    letter-spacing: 1pt;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8001862582781457) 50%, rgba(0,0,0,0) 100%);
}
/* Text div for cards without photos */
.photolessCard {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 0;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    padding: 0.4em;
    font-size: 16pt;
    letter-spacing: 1pt;
    font-weight: 600;
    text-decoration: none;
    color: white;
}