@import url('https://fonts.googleapis.com/css?family=Montserrat:300|Titillium+Web:700,300');

html, body {
    padding: 0;
    margin: 0;

    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 15px;

    background-color: #28221b;
    color: #fff;
}

article {
    display: block;
    width: 100%;
    min-height: 100vh;
    padding: 0px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 300;
}

#intro {
    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: initial;
    height: 100vh;

    /*background: linear-gradient(-45deg, #3a7ecd 0%, #499ee8 50%, #3a7ecd 50%, #499ee8 100%);*/
    background: linear-gradient(-45deg, #3a7ecd, #499ee8);
    color: #fff;

    text-align: center;
}

#intro > * {
    align-self: center;
}

#intro h1 {
    font-weight: 700;
    font-size: 3em;
    line-height: 3.2rem;
    margin: 0;
    text-shadow: 0 0 0.1em rgba(0, 0, 0, 0.25);
}

#intro h2 {
    margin: 0;
}

#intro figure {
    display: block;
    width: 256px;
    margin: 1rem 0 2rem;
    overflow: hidden;
    border: .5em solid #fff;
    box-shadow: 0 0 1em rgba(0, 0, 0, 0.25);
}

#intro figure img {
    display: block;
    width: 100%;
}

.social {
    display: flex;
    justify-content: space-around;
    margin: 25px 0;
}

.social a {
    display: inline-block;
}

.social img {
    max-height: 50px;
    vertical-align: middle;
}

@media (min-width: 512px) {
    #intro {
        flex-direction: row;
    }

    #intro figure {
        margin: 0 1rem 0 2rem;
    }

    #intro .content {
        margin: 0 2rem 0 1rem;
    }
}