@import url('https://fonts.googleapis.com/css?family=Merriweather:300,400,700,900|Source+Sans+Pro:200,300,400,600,700,900');

* {
    box-sizing: border-box;
}
body {
    font-family: 'Source Sans Pro', serif;
    background: #EFEFEF;
    font-size: 16px;
    line-height: 24px;
    padding: 0px;
    margin: 0;
}

main {
    background: transparent;
    height: 100vh;
    width: 50%;
    min-width: 600px;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    resize: both;
    overflow: auto;
}

main > div {
    background: transparent;
    color: white;
    width: 100%;
    resize: both;
    overflow: none;
    position: relative;
}

div.pic {
    display: inline-block;
    width: 40%;
    height: 220px;
    vertical-align: middle;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: right;
}

div.pic > img {
    max-width: 100%;
    max-height: 100%;
}

div.intro {
    color: #666;
    border: 0;
    padding: 0;
    margin: 0;
    display: inline-block;
    width: 59%;
    vertical-align: middle;
    padding-left: 20px;
}

h1  {
    font-family: 'Source Sans Pro';
    font-size: 44px;
    font-weight: 200;
}
h2 {
    font-family: 'Merriweather';
    font-weight: 400;
    font-size: 26px;
}

div.social {
    margin-top: 30px;
}
div.social > .twit {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 10px;
    background: url('../img/twitter-icon.png') no-repeat center center;
    background-size: 100%;
}
div.social > .linkedin {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 10px;
    background: url('../img/Linkedin-icon.png') no-repeat center center;
    background-size: 100%;
}

@media screen and (max-width: 600px) {
    main {
        width: 80%;
        min-width: auto;
    }

    div.pic {
        margin: 0 auto;
        height: 100px;
        display: block;
        text-align: center;
    }

    div.intro {
        display: block;
        margin: 0 auto;
    }

    h1  {
        font-size: 32px;
        line-height: 40px;
    }
    h2 {
        font-weight: 400;
    }

    div.social {
        margin: 0 auto;
    }

    div.social a {
        text-align: center;
        margin: 0 auto;
    }
}
