/* Main content box. */
main.hk-main {
    display: flex;
    margin-left: 12rem; /* same as width of 'section.hk-nav' */
    padding-top: 5rem;
    width: 80%;
    color: #000062;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

/* HK-Main content */
#hk-main.no-margin {
    margin-left: 0;
}

main.hk-main .gopher {
    width: 64px;
    height: 64px;
    align-self: center;
    margin-bottom: 1rem;
    /* Animation */
    animation-name: rotate;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-direction: normal;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(14400deg)
    }
}

/* CSS for the table */
table.records {
    border-collapse: collapse;
    width: 90%;
    margin-top: .25rem;
    margin-left: 5%;

}

/* Table Heading display */
table.records th {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    color: darkmagenta;
}

/* Table data display */
table.records td {
    border: 1px solid #dddddd;
    text-align: left;
    padding: 8px;
    height: 1rem;
}

/* Column widths: 1st column*/
table.records td:nth-child(odd) {
    width: 25%;
}

/* Column widths: 2nd column*/
table.records td:nth-child(even) {
    width: 25%;
}

table.records td:last-child {
    text-align: right;
}

/* Odd row colors: 1, 3, 5 .. */
table.records tr:nth-child(odd) {
    background-color: whitesmoke;
}
/* Even row colors: 2, 4, 6 */
table.records tr:nth-child(even) {
    background-color: lightgray;
}

table.records tr:last-child {
    text-align: right;
    font-weight: 500;
}