@import '_golbals.css';
.table {
    display: table;
    margin: auto;
    width: 75%;
}

.container {
    text-align: center;
}

.heading {
    display: table-row;
    font-family: 'TektonProNavBold';
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    background-color: #606060;
    color: #fff;
    border: solid;
}

p {
    margin-top: .1em;
    margin-bottom: .1em;
    font-family: 'Honovi';
}

footer p {
    font-family: "Arial", sans-serif;
}

.row {
    display: table-row;
    background-color: rgb(199, 193, 193);
    color: #202020;
    border-style: solid;
}

.cell {
    display: table-cell;
    border-style: solid;
    border-width: thin;
    padding: 5px;
}

.nCell {
    display: table-cell;
    border-style: solid;
    border-width: thin;
    padding: 5px;
}

.nCell:hover:nth-child(even) {
    background-color: #ffe600;
}

@media all and (max-width:968px) {
    .table {
        width: 96%;
    }
}