body {
    display: flex;
    flex-direction: column;
    background-color: #000000;
    color: #CCCCCC;
    font-family: "Old Standard TT";
    margin: 25pt;
    justify-content: center;
}

img {
    margin: auto;
}

div.tablelike {
    margin: auto;
    display: flex;
    flex-direction: column;
}

div.rowlike {
    display: flex;
    flex-direction: row;
}

div.celllike {
    display: flex;
    flex-direction: column;
    margin: 10pt;
}



div.cardHeader {
    display: flex;
    font-size: 20pt;
    font-weight: bold;
    text-align: center;
    height: 50px;
    color: #CCCCCC;
    background-color: #333333;
    border-style: solid solid none solid;
    border-color: white;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

div.cardHeaderContent {
    margin: auto;
}

div.cardBody {
    border-style: none solid none solid;
    border-width: 3px;
    border-color: white;
    padding: 5px;
}

div.cardMotto {
    height: 50px;
    display: flex;
    background-color: #333333;
    border-style: none solid solid solid;
    border-color: white;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

div.mottoContent {
    margin: auto;
}

td, th {
    border-width: 1px;
    border-color: #CCCCCC;
    border-style: solid;
    border-collapse: collapse;
}

img.tile {
    width: 200px;
}