* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    position: relative;
}

html {
    font-family: "Titillium Web", sans-serif;
    font-size: 12pt;
}

body {
    background: #111a22;
    color: #111;
}

a:link,
a:visited,
a:active {
    color: #d6233a;
    text-decoration: none;
    transition: color 0.15s;
}

a:hover {
    color: #eecc33;
}

h3 {
    margin-top: 1em;
}

td {
    padding: 0.25rem;
    vertical-align: top;
}

tr {
    border-bottom: 1px solid #ccc;
}

p + p {
    margin-top: 1em;
}

header {
    align-items: center;
    background: #96031a;
    background-image: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.3)
    );
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: 0 0 5px #666;
    display: flex;
    height: 80px;
    justify-content: center;
    padding: 1rem;
}

header > a:link {
    align-items: center;
    color: #eee;
    display: flex;
    font-size: 2em;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 0 0 0.5em #000;
    text-transform: uppercase;
}

header > a > img {
    display: inline-block;
    height: 60px;
    margin-right: 1rem;
}

footer {
    font-size: 0.85rem;
    text-align: center;
}

section, .section {
    background: #212a32;
    border: 1px solid #212a32;
    border-radius: 0.5rem;
    box-shadow: 0 0 10px #111;
    color: #cccfca;
    margin-top: 0.5rem;
    padding: 1rem;
}

ul {
    list-style: none;
}

ul > li {
    margin-left: 1rem;
}

#container {
    margin: 0 auto;
    max-width: 1200px;
}

.row {
    display: flex;
    flex-direction: column;
}

.row > .col:first-child {
    margin-left: 0;
}

.scrollable {
    border: 1px solid #515a62;
    border-radius: 0.5rem;
    display: inline-block;
    max-height: 15em;
    padding: 0.5rem;
    overflow-y: scroll;
}

.stat {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.15;
    text-align: center;
}

.stat > h1 {
    color: #eecc33;
    font-size: 2rem;
    white-space: nowrap;
}

.stat > h2 {
    font-size: 1rem;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .row {
        flex-direction: row;
        width: 100%;
    }

    .row > .col {
        flex: 1;
        margin-left: 0.5rem;
    }
}
