#homemainbg {
    display: block;
    background-position: 50% 50%;
    background-image: url("../img/kv-prd-crunchy.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
.dlcard {
    display: grid;
    align-items: stretch;
    border-radius: 16px;
    background-color: #fce4c4;
    border: 6px solid #fce4c4;
    margin-bottom: 30px;
}
.grid-vc {
  display: grid;
  justify-items: center;
  align-items: center;
}
.gridfd {
  grid-template-rows: [title] 100px [body] auto [footer] 100px;
}
.fdtitle {
    justify-self: center;
    align-self: center;
    height: 100px;
}
.fdbody {
    justify-self: start;
    align-self: start;
    height: 200px;
    padding: 0 0.5rem;
}
.fdfooter {
    aligh-self:center;
    height: 100px;
    margin-bottom: 60px;
}
figure {
    position:relative;
}
figure img {
    width: 100%;
    vertical-align: top;
}
figure figcaption {
    position: absolute;
    left:0;
    top:0;
    padding: 10px 1rem;
    color:#fff;
    background-color: rgba(84,63,50,0.6);
}

@media screen and (max-width:768px) {
    .fdbody {height:auto;}
}
