body {
    font-family: 'Open Sans', sans-serif;
}

.contain {
    margin: auto;
    max-width: 1200px;
    padding: 50px;
}


.box {
    width: 100%;
    display:flex;
    flex-flow: row;
}
.three {
    width: 75%;
    margin: auto;
}
.two {
    width: 50%;
    margin: auto;
}
.one {
    width: 25%;
    margin: auto;
}

header {
    background: url("/assets/images/background.png");
    background-position: 50% 0%;
    background-size: contain;
    background-repeat: repeat-x;
    min-height: 650px;
}

header h2 {
    color: #8665CC;
    font-weight: 300;
    line-height: 1.2em;
}
header h1 {
    line-height: 1.2em;
    margin-bottom: 7px;
}
header img {
    margin: auto; max-width: 350px
}

.logo {
    width: 200px;
    height: 50px;
    background: url("/assets/images/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 0% 50%;
    margin-bottom: 50px;
}
.logo a {
    width: 100%;
    height: 100%;
    display: inline-block;
}
.feature.right .screen {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("/assets/images/background_right.png");
    background-size:contain;
}

.feature.left .screen {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-image: url("/assets/images/background_left.png");
    background-size:contain;
}
.screen img {
    margin: auto;
    max-height: 500px;
}

.feature h3 {
    font-size: 1.5em;
    line-height: 1.2em;
}
.feature p {
    margin-top: 10px;
}

.header_text {
    text-align: center;
    font-size: 2em;
    margin-bottom: 70px;
}
h3.header_text {
    font-size: 1em;
}

p {
    margin-top: 20px;
    font-weight: 300;
}
.bottom {
    background: url("/assets/images/bottom.png");
    background-position: 50% 100%;
    background-size: contain;
    background-repeat: repeat-x;
    min-height: 800px;
    padding-top: 500px
}

footer {
    background-color: #DDDEFB;
}
footer img {
    width: 200px;
    float: left;
    margin-right: 20px
}
footer ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px
}
footer ul li {
    display: block;
    float: left;
    margin: 0px;
    padding-right: 20px
}
footer ul li a {
    color: #000;
}
.box.team {
    align-items: stretch;
}
.box.team .one {
    margin: 0 auto;
}
.headshot {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 150px;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    border-radius: 150px;
}

.illustration {
    margin-top: 80px;
    margin-bottom: 40px;
    width: 100%;
    height: 100%;
    max-height: 150px;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}
.get_app {
    width: 100%;
    display:flex;
    flex-flow: row;
    margin-top: 30px;
}
.get_app img {
    width: 125px; 
    height: auto;
    justify-content: center;
    margin: 40px 20px 0 0
}
.button {
    display: inline-block;
    padding: 10px;
    border-radius: 4px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
}

.bottom .get_app {
    max-width: 300px;
    margin:auto;
    margin-top: 30px;
}
.bottom .get_app a {
    margin: auto;
}
.team .one h3 {
    margin-top: 20px;
}
.bottom h2, .bottom h3 {
    text-align: center;
}
@media only screen and (max-width: 1200px) {
    header {
        background-size: cover;
    }
    .bottom {
        background-size: cover;
    }
}
@media only screen and (max-width: 600px) {
    header h1 {
        margin-top: 20px;
    }
    header img {
        margin-top: 75px;
        width: 100%;
    }
    header h2 {
        margin-bottom: 10px;
    }
    .feature h3 {
        margin-top: 20px;
    }
    .feature p {
        margin-bottom: 50px;
    }

    .box {
        flex-flow: column;
    }
    .box.left {
        flex-flow: column-reverse;
    }
    .one, .two, .three {
        width: 100%;

    }
    .illustration, .headshot {
        height: 150px;
    }
    .box.team .one {
        margin-bottom: 60px;
    }
    .feature .two {
        margin-bottom: 60px;
    }
    footer .feature .box {
        flex-flow: row;
    }
    .button {
        width: 100%;
        text-align: center;
    }

  }