#content {
    grid-template-rows: 1.1fr 11.1fr 5fr;
}
.title-bar .title {
    background-color: #b31218;

}

.top-citrus {
    background-image: url('img/citrus.jpg');
    grid-area: citrus;
}

.top-floral {
    background-image: url('img/floral.jpg');
    grid-area: floral;
}

.top-oriental {
    background-image: url('img/oriental.jpg');
    grid-area: oriental;
}

.top-woody {
    background-image: url('img/woody.jpg');
    grid-area: woody;
}

.top-citrus,
.top-floral,
.top-oriental,
.top-woody {
    font-family: 'AGPresquire Bold', arial;
    color: #ffffff;
    font-size: 2em;
    line-height: 3em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0px 0px 7px black;
}

.top-table {
    display: grid;
    grid-template-areas: "citrus floral floral floral floral floral floral floral woody woody oriental oriental oriental oriental oriental" "citrusa water green fruit fruit fantasy spring narcotic floralb fruita florala florala spicy vanilla woodya";
    gap: 5px;
    margin: 5px;
    text-shadow: 0px 0px 7px white;
}

.top-table div {
    text-align: center;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.top-table div h3 {
    text-transform: uppercase;
    border-bottom: #ffffff 5px solid;
    line-height: 1em;
    margin-block-start: 0;
    padding: 15px;
    font-size: 1.3em;
    font-family: 'AGPresquire Bold', arial;
    max-height: 1em;
}

.bottom-table {
    display: grid;
    grid-template-columns: repeat(17, auto);
    grid-template-rows: repeat(8, auto);
    grid-auto-flow: column;
    padding: 40px 50px;
}

.itm {
    margin: 2px;
    display: -webkit-inline-box;
}

.sname {
    font-weight: 600;
    margin-right: 2px;
}

.scolor {
    height: 20px;
    width: 30px;
    background-color: #555555;
}

#citrus {
    background-color: var(--col-Fct);
    background-image: url(img/citrus-footer.png);
    grid-area: citrusa;
}

#f-aquatic {
    background-color: var(--col-Ffq);
    background-image: url(img/f-aquatic-footer.png);
    background-position: bottom;
    background-repeat: no-repeat;
    grid-area: water;
}

#f-green {
    background-color: var(--col-Ffg);
    background-image: url(img/f-green-footer.png);
    grid-area: green;
}

#f-fruit {
    background-color: var(--col-Fff);
    background-image: url(img/f-fruit-footer.png);
    margin-block-start: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(30, 1fr);
    grid-area: fruit;
}

#f-fruit p,
#o-floral p {
    margin-block-start: 0;
}

#f-fruit h3,
#o-floral h3 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-end: 1;
}

#f-fantasy {
    background-color:var(--col-Ffa);
    background-image: url(img/f-fantasy-footer.png);
    grid-area: fantasy;
}

#f-spring {
    background-color: var(--col-Ffs);
    background-image: url(img/f-spring-footer.png);
    grid-area: spring;
}

#f-spring h3,
#f-narcotic h3 {
    padding-top: 5px;
    padding-bottom: 24px;
}

#f-narcotic {
    background-color: var(--col-Ffn);
    background-image: url(img/f-narcotic-footer.png);
    grid-area: narcotic;
}

#o-floral {
    background-color: var(--col-Fof);
    background-image: url(img/o-floral-footer.png);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(30, 1fr);
    margin-block-start: 0;
    grid-area: florala;
}

#o-spicy {
    background-color: var(--col-Fos);
    background-image: url(img/o-spicy-footer.png);
    grid-area: spicy;
}

#o-vanilla {
    background-color: var(--col-Fov);
    background-image: url(img/o-vanilla-footer.png);
    grid-area: vanilla;
}

#o-woody {
    background-color: var(--col-Fow);
    background-image: url(img/o-woody-footer.png);
    grid-area: woodya;
}

#w-floral {
    background-color: var(--col-Fwf);
    background-image: url(img/w-floral-footer.png);
    grid-area: floralb;
}

#w-fruity {
    background-color: var(--col-Fwu);
    background-image: url(img/w-fruity-footer.png);
    grid-area: fruita;
}

#f-green,
#f-narcotic,
#o-floral,
#o-woody,
#w-floral {
    color: #ffffff;
    text-shadow: 0px 0px 7px  black;
}


/*Lets Print it*/

@media print {

    body {
        zoom: 39%;
    }
}