#homemainbg {
    display: block;
    background-position: 50% 60%;
    background-image: url("../img/kv-prd-banana.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}
table tr, table th, table td {
    background-color: #fff7e2;
}



.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);
}
.shapedform {
    display: flex;
    align-self: center;
    justify-self: space-around;
}
.shapedform figure figcaption {
    position: relative;
    left:0;
    top: 0;
    width:90%;
    padding: 10px;
    marign: 0 auto;
    color:#fff;
    background-color: rgba(84,63,50,0.6);
    text-align: center;
}
@media screen and (max-width:768px) {
    .fdbody {height:auto;}
    .shapedform {
        flex-direction: column;
    }
    .shapedform figure figcaption {
        width: 100%;
    }
    .shapedform figure img {
        margin-bottom: 30px;
    }
}

