.Table
    {
        display: table;
        width: 100%;
        height: 700px;
        border: 0;
        margin-top: : 20px;
        padding-top: 20px;
    }
    .Title
    {
        display: table-caption;
        text-align: center;
        font-weight: bold;
        font-size: larger;
    }
    .Heading
    {
        display: table-row;
        font-weight: bold;
        text-align: right;
    }
    .Row
    {
        display: table-row;
        width: 100%;
        height: 50%;
    }
    .Cell
    {
        display: table-cell;
        width: 50%;
        height: 50%;
        border: solid;
        border-width: thin;
    }

    h3 {
      text-align: center;
    }
