﻿    html {
        height:100%;
    }

    html,
    body {
        font-family: 'Open Sans', sans-serif;
        -webkit-font-smoothing: antialiased;
        font-size: 16px;
        font-weight:  400;
        color: #414141;
        height:100%;
        background-color:#000;
        background-image:url('/resources/images/background_dark.jpg');
        background-repeat: no-repeat;
        background-position: 50% 0;
        -ms-background-size: cover;
        -o-background-size: cover;
        -moz-background-size: cover;
        -webkit-background-size: cover;
        background-size: cover;
    }

    body,
    form {
        display:flex;
        width:100%;
    }

    .layout {
        width:100%;
        display:flex;
        flex-direction:column;
        flex-wrap:nowrap;
        justify-content:space-between;
    }

    header > div {
        height:70px;
        width:100%;
        background: rgba(20,27,28,0.77);
    }

    header .logo {
        font-size:18px;
        font-weight:bold;
        padding:0 30px;
        line-height:350%;
    }

    .content-block {
        background: rgba(20,27,28,0.77);
        text-align:center;
        padding:10% 10%;
        display:inline-block;
    }

    .congrats {
        font-size:32px;
        color:#ffffff;
        line-height:80px;
    }

    h1 {
        color:#ea8400;
        font-size:30px;
        line-height:40px;
        font-weight:bold;
    }

    h2 {
        color:#ffffff;
        font-size:26px;
        line-height:40px;
        font-weight:bold;
    }

    h3 {
        color:#fff;
        margin-top:30px;
        font-size:16px;
    }

    footer > div {
        height:100px;
        width:100%;
        background: rgba(20,27,28,0.77);
    }

    footer .logo {
        font-size:18px;
        font-weight:bold;
        padding:0 30px;
        line-height:350%;
    }

    footer .copyright {
        color:#5e7888;
        font-size:12px;
        margin-top:-15px;
        padding:0 30px;
    }

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {

        .congrats {
            font-size:48px;
        }

        h1 {
            font-size:56px;
            line-height:80px;
        }

        h2 {
            font-size:48px;
            line-height:80px;
        }

        h3 {
            font-size:16px;
        }

    }

    /* Medium Devices, Desktops */
    @media only screen and (min-width : 992px) {

    }

    /* Large Devices, Wide Screens */
    @media only screen and (min-width : 1200px) {

    }