@font-face {
    font-family: 'SilkscreenNormal';
    src: url('type/slkscr-webfont.eot');
    src: url('type/slkscr-webfont.eot?#iefix') format('embedded-opentype'),
    url('type/slkscr-webfont.woff') format('woff'),
    url('type/slkscr-webfont.ttf') format('truetype'),
    url('type/slkscr-webfont.svg#SilkscreenNormal') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SilkscreenBold';
    src: url('type/slkscrb-webfont.eot');
    src: url('type/slkscrb-webfont.eot?#iefix') format('embedded-opentype'),
    url('type/slkscrb-webfont.woff') format('woff'),
    url('type/slkscrb-webfont.ttf') format('truetype'),
    url('type/slkscrb-webfont.svg#SilkscreenBold') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
    margin: 0;
}

.container {
    max-width: 1040px;
    display: flex;
    min-height: 100vh;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
}

.h1 {
    font-family: 'SilkscreenBold', Arial, sans-serif;
    font-size: 50px;
    letter-spacing: 0;
    margin: 1rem 1rem 0.3rem 1rem;
}

.h2 {
    font-family: 'SilkscreenNormal', Arial, sans-serif;
    font-size: 30px;
    letter-spacing: 0;
    width: 100%;
    min-width: 800px;
    margin: 0 1rem 0.5rem 1rem;
    line-height: 1.2;
}

ul {
    margin-top: 2rem;
    max-width: calc(100% - 2rem);
    padding-left: 1rem;
}

li {
    font-family: 'SilkscreenNormal', Arial, sans-serif;
    font-size: 20px;
    margin: 0 1rem 0.7rem 1rem;
    list-style-type: square;
}

a, a:visited {
    color: #FFFFFF;
}

.top-margin {
    margin-top: 2rem;
}

.desktop-only {
    display: none;
}

@media only screen and (min-width: 600px) {
    .h1 {
        font-size: 90px;
    }
    .h2 {
        font-size: 40px;
        line-height: 1.5;
    }
    ul {
        padding-left: 2rem;
    }
    li {
        font-size: 30px;
    }
}

@media only screen and (min-width: 1030px) {
    .h2 {
        line-height:1.2;
    }
    .mobile-only {
        display: none;
    }

    .desktop-only {
        display: inline;
    }
}