
html {
    --bg: #333;
    --txt: #fafafa;
    --txt-2: #aaa;
    --brd: #555;
}

html,
body {
    background-color: var(--bg);
    font-family: Montserrat, sans-serif;
    color: var(--txt);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    /* background-image: repeating-linear-gradient(-135deg, #345, #335); */
    background-image: repeating-radial-gradient( circle at 0 0, #355 0, #335 100% );
    
}

h1,h2,h3,h4,h5,h6,p,pre,span {
    padding: 0;
    margin: 0;
}

a {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    box-shadow: inset 0 0 0 var(--txt);
    color: var(--txt);
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .5s ease-in-out, box-shadow .5s ease-in-out;
    font-size: 14px;
}

a:hover {
    box-shadow: inset 500px 0 0 0 var(--txt);
    color: var(--bg);
}

header {
    padding: 72px 8px 0 8px;
    box-sizing: border-box;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    font-weight: 200;
    font-size: 36px;
    letter-spacing: 2px;
}

h2 {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 200;
    color: var(--txt-2);
    letter-spacing: 5px;
    text-transform: uppercase;
    word-spacing: 20px;
}

h3 {
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 300;
    color: var(--text);
    letter-spacing: 1px;
    border-bottom: 1px solid var(--brd);
}

h4 {
    display: inline;
    font-weight: 400;
    font-size: 14px;
}

h5 {
    font-weight: 200;
    font-size:10px;
    text-transform: uppercase;
}

main {
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
}

ul {
    margin-top: 16px;
    list-style: none;
    padding: 0;
    padding-bottom: 32px;
}

ul li {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 200;
}

ul li a {
    margin-right: 2px;
}

ul li span {
    font-size: 12px;
    color: var(--txt-2);
    font-weight: 200;
}

.results {
    padding: 16px;
}

.results .result {
    margin-top: 64px;
}

.cols {
    display: flex;
    margin-left: -16px;
    margin-right: -16px;
    flex-wrap: wrap;
}

.cols .col {
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
}

@media screen and (min-width: 768px) {

    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 16px;
        letter-spacing: 10px;
        word-spacing: 40px;
    }

    h3 {
        font-size: 24px;
    }
    
    h4 {
        font-size: 16px;
    }
    
    h5 {
        font-size:10px;
    }
    
    
    .cols.md-2 .col{
        width: 50%;
    }

    .cols.md-3 .col{
        width: 33%;
    }    
}