div.card {
    width:fit-content;
    position:relative;
    border-radius:10px;
    border-color:var(--slate-grey);
    border-style:solid;
    border-width:1px;
    background-color:var(--platinum);
    filter:var(--shadow);
    border-top-width:5px;
    border-bottom-width:5px;
    corner-top-left-shape: bevel;
    corner-bottom-right-shape: bevel;
    border-top-right-radius:4px;
    border-bottom-left-radius:4px;
}

div.card div.card-title {
    color:var(--onyx);
    margin:0 5px;
}

div.card div.card-body {
    margin:10px;
}


