body {
    background-color: #FDDEA4;
    margin: 0;
}

h1 {
    font-family: 'Publico Headline';
    font-size: 24px;
    font-weight: 700;
    margin: 16px;
}

h3 {
    font-family: 'Source Sans Pro';
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.header {
    flex: 0 1 auto;    
    align-self: stretch;

    height: 56px;
    padding: 8px 16px;
    flex-direction: row;
    background: #FFFFFF;
    border-bottom: 1px solid #CCCCCC;
} 

.wrapper {
    display: flex;    
    flex-direction: column;    
    flex-wrap: nowrap;    
    justify-content: center;    
    align-content: stretch;    
    align-items: stretch;
    height: 100vh;
}

.background {    
    flex: 100 1 auto;
    align-self: stretch;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo {
    height: inherit;
}

.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
}

.hero {
    margin-top: 16px;
    width: 290px;
}

@media screen and (min-width: 768px) {
    h1 {
        font-size: 36px;
        margin: 32px 0;
    }

    h3 {
        font-size: 20px;
    }

    .header {
        padding-left: 40px;
        height: 72px;
    }

    .background {
        flex-direction: column;
    }

    .hero {
        margin-top: 72px;
        width: 570px;
    }
}

@media screen and (min-width: 1200px) {
    .header {
        padding-left: 136px;
    }

    .background { 
        flex-direction: row;
    }

    .title {
        width: 370px;
    }

    .hero {
        margin-top: 0;
        width: 521px;
    }
}

@media screen and (min-width: 1440px) {
    .header {
        padding-left: 168px;
    }

    .title {
        width: 445px;
    }

    .hero {
        width: 635px;
    }
}