.card {
    padding-top: 15px;
    width: calc(100% + 5px);
    padding-bottom: 5px;
}

.spacer {
    margin-top: 80px;
}


.card-header {
    font-family: "Valkorn", sans-serif;
    font-size: 24px;
    padding-top: 15px;
    color: white;
    background-color: black;
    height: 55px;
    text-align: center;
}

.card-body {
    text-align: center;
}

.card-footer {
    padding-top: 15px;
    margin-bottom: 40px;
    color: black;
    height: 55px;
    text-align: center;
}


.card-body img {
    width: 100%;
    filter: none;
    -webkit-filter: grayscale(0);

}

/* Disable grayscale on hover */
.card-body:hover {
    box-shadow: 5px 5px 5px #888888;
    filter: gray; /* IE6-9 */
    filter: grayscale(1); /* Microsoft Edge and Firefox 35+ */
    -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
}


@media (max-width: 320px) and (orientation: portrait){
    .card-body img {
        width: 100%;
    }
}

@media (max-width: 480px){
    img.photo{
       max-width: 100%;
    }
}

