@media (max-width:1000px) { /* MOBILE */
    body {
        background: #2962D5 url("background_v3.png") no-repeat fixed center;
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: center;
        font-family: Poppins, Arial, sans-serif;
        font-size: 2em;
        line-height: 1.5;
        margin: 0;
        padding: 0;
        color: #eee;
        width: 100vm;
    }

    .displayBlock {
        display: block;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 3vh;
        padding: 5vh;
        width:80vw;
    }

    #submit {
        display: block;
        position:absolute;
        top: 5vh;
        left: calc(50% - 10vh);
        margin: 1pt auto 2pt auto;
        padding: 5pt;
        font-size: 1.8em;
        border-radius: 30pt;
        color: #001D7D;
        border: 0px;
        font-weight: bolder;
        background:#eee;
        width: 20vh;
        cursor: pointer;
    }

    #stepCount {
        display: block;
        position:absolute;
        top: 5vh;
        padding: 5pt;
        left: calc(50% + 11vh);
        font-size: 1.6em;
    }
}
@media (min-width:1000px) { /* DESKTOP */
    body {
        background: #2962D5 url("background_v3.png") no-repeat fixed center;
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: center;
        font-family: Poppins, Arial, sans-serif;
        font-size: 1em;
        line-height: 1.5;
        margin: 0;
        padding: 0;
        color: #eee;
        width: 100vm;
    }

    .displayBlock {
        display: block;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 5vh;
        padding: 5vh;
        max-width: 90%;
        width:500px;
    }

    #submit {
        display: block;
        position:absolute;
        top: 7vh;
        left: calc(50% - 10vh);
        margin: 1pt auto 2pt auto;
        padding: 5pt;
        font-size: 1.8em;
        border-radius: 30pt;
        color: #001D7D;
        border: 0px;
        font-weight: bolder;
        background:#eee;
        width: 20vh;
        cursor: pointer;
    }

    #stepCount {
        display: block;
        position:absolute;
        top: 7vh;
        padding: 5pt;
        left: calc(50% + 11vh);
        font-size: 1.6em;
    }
}

.navBlock {
    display: block;
    position: relative;
    width: 90vw;
    height: 10vh;
    text-align: center;
    padding: 30pt;
    /*font-size: 0.8em;*/
}

#logo {
    display: block;
    float: left;
    width: 140pt;
    max-width: 45%;
}

#menu {
    display: block;
    float: right;
    width: 32pt;
    max-width: 10%;
}

h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 35pt;
}

a {
    color:#eee;
    text-decoration: none;
}

/* Form styles */

.continue {
    margin: 0 0 0 auto;
}

label {
    font-size: 0.9em;
}

input {
    display: block;
    margin: 1pt auto;
    padding: 7pt;
    border-radius: 7pt;
    border: 1pt solid #333;
    width: 100%;
    font-size: 1.4em;
}