@charset "UTF-8";
/**
 * 
 * @authors Your Name (you@example.org)
 * @date    2017-02-20 07:51:42
 * @version $Id$
 */

@import '../stylesheets/normalize.css';

@font-face {
    font-family: 'elsietallnskinnymedium';
    src: url('../fonts/tall-n-skinny-2-webfont.woff2') format('woff2'),
         url('../fonts/tall-n-skinny-2-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* Mobile first queries */
 body{
        background:url('../images/bg-vert-strip.jpg') repeat-y center center;
        width: 100vw;
        height: 100vh;
    }

    .container{
        font-size: 16px;
        min-width: 320px;
        margin-bottom: 1em;
    }

    .image{
        height: 390px;
        width: 100%;
        position: absolute;
        display: block;
        background:url('../images/mobileBackground-amended.jpg') no-repeat center bottom;
        background-size: 100%;
    }

    .logo{
        display: block;
        width: 80%;
        height:100px;
        background:transparent url('../images/f+b_logo.png') no-repeat center center;
        background-size: 100%;
        margin: 1em auto 1em auto;
    }

    .body{
        font-family:'elsietallnskinnymedium', sans-serif;
        font-size: 1.5em;
        width: 80%;
        margin: 0 auto 1em auto;
        text-align: center;
    }

    a{
        display: block;
        font-family:'elsietallnskinnymedium', sans-serif;
        text-decoration: none;
        font-size: 1.5em;
        color: #636564;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }

/* Larger than mobile */
@media (min-width: 480px) {
    .logo{
        width: 70%;
        height: 170px;
    }
    .container{

    }

    .body{
        width:66%;
    }
    .image{
        height: 580px
    }
}

/* Larger than mobile */
@media (min-width: 580px) {
    .image{
        height:720px;
    }
}

/* Larger than phablet */
@media (min-width: 760px) {
    body{
        background-image:none;
        background-color: #fff;
        width: 100vw;
        height: 100vh;
    }

    .body{
        font-size: 2em;
        width:60%;
    }

    .container{
        position: absolute;
        z-index: 10;
        width: 499px;
        max-width: 488px;
        left:50%;
        margin-left:-38%;
    }

    .logo{
        height: 120px;
    }
    .image{
        height: 100vh;
        background:url('../images/desktop-background.jpg') no-repeat right bottom;
        background-size: 100%;
        z-index: 1;
    }
}

