a {
    color:#3399ff;
    text-decoration:none;
}

a:hover, a:active {
    text-decoration:underline;
}

body {
    background:#000000; /* Previously: 0a122b; */
    color:#ffffff;
    font-family: "Calibri", "Arial", "Helvetica", sans-serif;
    text-align: center;
    font-size: 2.086vw;
    margin: 0;
}

td {
    font-size: 0.8em;
    padding: 0 0.3125em;
}

tr td:nth-of-type(1) { /* Wide enough for longest Cmdr name */
    min-width: 6em;
}

tr td:nth-of-type(2) { /* Stops description col from shrinking when text starts to wrap. */
    min-width: 18em;
}

tr td:nth-of-type(4) { /* Stop heading and distance from wrapping */
    min-width: 5em;
}

tr { /* cosmetic spacing */
    height: 42px;
}

header#banner {
    position: fixed;
    z-index: 1;
    top: 0;
    width:100%;
    height: 5em;
    background: rgb(200,200,200)
}

section#main-content {
    margin: 5em auto 0;
    padding: 0 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1664px;
}

#content-left, #content-right {
    width: 100%;
    padding: 0 1em;
    box-sizing: border-box;
}

.iframe-wrap {
    border: 1px solid white;
    position: relative;
    padding-bottom: 75%;
}

.iframe-timer {
    position: relative;
    width: 202px;
    height: 68px;
    margin: 0 auto;
    border-style: none dotted dotted dotted;
}

#content-left iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left:0;
    right: 0;
    bottom: 0;
}

@media screen and (min-width: 768px) {
    body {
        font-size: 1em;
    }
    #content-left, #content-right {
        width: 80%;
    }
}
@media screen and (min-width: 1180px) {
    body {
        font-size: 1em;
    }
    #content-left {
        width: 60%;
        position: fixed;
        top: 5em;
        left: 0;
    }
    #content-right {
        width: 100%;
        padding-left: 60%;
    }
}
@media screen and (min-width: 1680px) {
    #content-left {
        width: 832px;
        margin: 0 0 0 calc(50% - 832px);
    }
}