:root {
    --content-width: 1200px;
    --content-padding: 0px 20px;
    --content-mobile-padding: 0px 10px
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0
}

body {
    font-family: Open Sans, sans-serif;
    background-color: #1c1e2f;
    color: #fff
}

p {
    margin-bottom: 20px
}

h1, h2, h3 {
    margin: 10px 0
}

h2 {
    margin-top: 20px;
    padding: 10px 0;
    border-bottom: 1px solid hsla(0, 0%, 100%, .25)
}

h2, h3 {
    text-transform: uppercase
}

ol {
    margin-left: 20px;
    max-width: 800px
}

ol li, ul li {
    margin-bottom: 10px
}

ul {
    margin: 0 0 20px 20px
}

body, html {
    max-width: 100vw;
    overflow-x: hidden
}

a {
    color: inherit;
    text-decoration: none
}

table {
    margin-bottom: 20px;
    border-radius: 5px;
    background-color: #161626;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
    max-width: 900px
}

thead {
    border-bottom: 1px solid #8b8b94
}

table thead th {
    text-transform: uppercase;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center
}

table tbody td, table thead th {
    width: 50%;
    border-bottom: 1px solid #252536;
    padding: 10px 20px
}

footer {
    background-color: #191921;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0
}

.noMinWidth tbody td, .noMinWidth thead th {
    min-width: 0
}

@media (min-width: 800px) {
    body:after {
        top: 0;
        left: 0;
        height: 100%;
        content: "";
        position: fixed;
        width: 100%;
        background: url(/_next/static/media/background.51eb736e.svg) repeat-y;
        z-index: -1;
        background-size: contain
    }
}

@media (max-width: 510px) {
    table {
        font-size: 14px
    }
}