body, html {
    width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-family: Georgia, sans-serif;
}

.main-wrap {
    max-width: 95%;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.main {
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.menu {
    flex: 1 0 100%;
    margin: 2em;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    align-self: flex-start;
}

.menu A {
    text-decoration: none;
    color: white;
    padding: 1em 2em;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}
.menu A:hover {
    color: #1ed7ff;
}

#content {
    flex: 1 1 100%;
}

pre {
    flex-basis: 100%;
}

.data-table {
    overflow-x: auto;
    flex-basis: 100%;
}

@media screen and (max-width: 786px) {
    .data-table th {
        writing-mode: vertical-rl;
        text-orientation: upright;
    }
}

.sortable {
    border-spacing: 0
}

.sortable tbody tr:nth-child(odd) {
    background: #e4e4e4
}

.sortable td, .sortable th {
    padding: 10px
}

.sortable td:first-child, .sortable th:first-child {
    border-top-left-radius: 4px
}

.sortable td:last-child, .sortable th:last-child {
    border-top-right-radius: 4px
}

.sortable th {
    background: gray;
    color: #fff;
    cursor: pointer;
    font-weight: normal;
    text-align: left;
    vertical-align: baseline;
    white-space: nowrap
}

.sortable th:hover {
    color: #000
}

.sortable th:hover::after {
    color: inherit;
    font-size: 1.2em;
    content: ' \025B8'
}

.sortable th::after {
    font-size: 1.2em;
    color: transparent;
    content: ' \025B8'
}

.sortable th.dir-d {
    color: #000
}

.sortable th.dir-d::after {
    color: inherit;
    content: ' \025BE'
}

.sortable th.dir-u {
    color: #000
}

.sortable th.dir-u::after {
    color: inherit;
    content: ' \025B4'
}

.dash {
    width: 100%;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.dash-block {
    flex: 1 1 50%;
    font-size: 10vw;
    flex-wrap: nowrap;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}
.dash-block.time {
    font-size: 2rem;
    flex-basis: 100%;
    white-space: normal;
    text-align: center;
    margin-top: 2em;
}