        html, body, div, span, applet, object, iframe,
        h1, h2, h3, h4, h5, h6, p, blockquote, pre,
        a, abbr, acronym, address, big, cite, code,
        del, dfn, em, img, ins, kbd, q, s, samp,
        small, strike, strong, sub, sup, tt, var,
        b, u, i, center,
        dl, dt, dd, ol, ul, li,
        fieldset, form, label, legend,
        table, caption, tbody, tfoot, thead, tr, th, td,
        article, aside, canvas, details, embed, 
        figure, figcaption, footer, header, hgroup, 
        menu, nav, output, ruby, section, summary,
        time, mark, audio, video {
            margin: 0;
            padding: 0;
            border: 0;
            font-size: 100%;
            font: inherit;
            vertical-align: baseline;
        }
        /* HTML5 display-role reset for older browsers */
        article, aside, details, figcaption, figure, 
        footer, header, hgroup, menu, nav, section {
            display: block;
        }
        body {
            line-height: 1;
        }     
        body{
          padding-bottom: 60px;
          font-family: 'roboto';
          font-size: 18px;
          line-height: 18px;
        }

        h1,h2,h3,h4{
            font-family: "Special Elite", system-ui;
            font-weight: 400;
            font-style: normal;
            color: #9e0000;
        }

        h1{
            font-size: 24px;
        }
        
        @media all and (min-width: 769px){
            h1{
                font-size: 48px;
            }
        }


        h1 img {
            width: 100vw;
            max-width: 800px;
            display: block;
            margin: 0 auto;
        }

        a svg {
            display: block;
            width: 80px;
            position: relative;
            margin: 0 auto;
            height: auto;
        }
        .join{
            color: #000;
            text-align: center;
        }


    nav{
        width: auto;
        padding: 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    @media all and (min-width: 769px){
        nav{
            padding-left: 10vw;
            padding-right: 10vw;
        }
    }

    nav .logomark img{
        width: 80px;
        height: auto;
        display: block;
    }
    nav a{
        color: #9e0000;
        text-decoration: none;
        font-family: 'roboto';
        font-weight: bold;
        text-transform: uppercase;
    }

    nav a:hover{
        text-decoration: underline;
    }

    nav a.active{
        pointer-events: none;
        text-decoration: underline;
    }

    section{
        width: auto;
        margin-left: 40px;
        margin-right: 40px;
        margin-top: 80px;
    }


    @media all and (min-width: 769px){
        section{
            padding-left: 10vw;
            padding-right: 10vw;
        }
    }

    h1 + p{
        margin-top: 120px;
    }
    p{
        margin-top: 20px;
    }

    section.file-listing{
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 120px;
    }

    section.file-listing a{
        color: #000;
        text-decoration: none;
        text-align: center;
    }

    section.file-listing a:hover{
        text-decoration: underline;
    }

    section.file-listing a img{
        width: 120px;
        height: auto;
        display: block;
        margin-bottom: 10px;
        border: 1px solid #9e0000;
        margin-left: auto;
        margin-right: auto;
    }



    @media all and (min-width: 769px){
        section.file-listing{
        
            grid-template-columns: 1fr 1fr 1fr 1fr;
        }
    }