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

html
{
    font-family: 'Proxima Nova', sans-serif;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    background-color: #1D1D1D;
}

html, a
{
    color: #E5E5E5;
    text-decoration: none;
}

html, body
{
    height: 100vh;
    height: 100dvh;
    overscroll-behavior: none;
    overflow: hidden;
}

body
{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer
{
    padding-bottom: 50px;
}

footer ul
{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

footer ul li.logo
{
    margin-right: auto;
}

footer ul li
{
    list-style-type: none;
    margin-right: 30px;
}

footer ul li:last-child
{
    margin-right: 0;
}

h1
{
    text-align: center;
    text-transform: uppercase;
    font-size: 138px;
    letter-spacing: -7px;
    line-height: 112px;
}

h1:first-of-type
{
    margin-top: 100px;
}

p
{
    text-align: center;
    max-width: 660px;
    margin-top: 3em;
    line-height: 1.2em;
}

main .container
{
    display: flex;
    flex-direction: column;
    align-items: center;
}

main .logo
{
    margin-top: 50px;
}

ul li img
{
    width: 20px;
}

.logo img, img.logo
{
    width: 100px;
}

.container
{
    width: 90%;
    margin: auto;
}

.mobile-only
{
    display: none;
}

@font-face
{
    font-family: 'Proxima Nova';
    src: url('resources/fonts/ProximaNova-Regular.woff') format('woff');
    font-weight: normal;
    font-display: swap;
}

@font-face
{
    font-family: 'Proxima Nova';
    src: url('resources/fonts/ProximaNova-Bold.woff') format('woff');
    font-weight: bold;
    font-display: swap;
}

@media (max-width: 768px)
{
    /* mobile layout */

    h1
    {
        font-size: 36px;
        letter-spacing: -2px;
        line-height: 34px;
    }

    footer ul
    {
        justify-content: center;
    }

    .container
    {
        width: 80%;
    }

    .no-mobile
    {
        display: none;
    }

    .mobile-only
    {
        display: block;
    }

}