html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
html{
    font-family: 'Varela', sans-serif;
    height: 100%;
}
body{
    height: 100%;
}
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a, a:hover, a:visited{
    text-decoration: none;
    color: inherit;
}

.social{
    display: flex;
    justify-content: space-around;
    background-color: #FFF;
}

.social a{
    width: calc(100% / 6);
    text-align: center;
    padding: 20px;
    font-size: 4em;
}

.fa-file-pdf {
    color: #cd0f16;
}

.fa-soundcloud{
    color: #ff561d;
}

.fa-facebook{
    color: #4266ae;
}

.fa-google-plus{
    color: #d84b36;
}

.fa-linkedin{
    color: #0079b1;
}

.fa-instagram{
    color: #000000;
}

.fa-gitlab{
    color: #db5424;
}

.main-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    position: fixed;
}

.card, .image{
    width: 50%;
    height: 100vh;
}

.image{
    background: url(./me_prod.jpg) 50% 50%;
    background-size: cover;
}

.card {
    position: relative;
    box-sizing: border-box;
    background-color: #061C30;
    width: 50%;
    overflow-y: auto;
}

.card-container {
    position: relative;
    padding: 80px;
    max-width: 640px;
    margin: auto;
    background-size: cover;
    z-index: 20;
}

img{
    position: absolute;
    width: 50%;
    left: 25%;
    top: 10%;
    z-index: 10;
    opacity: 0.3;
}

h2 {
    color: #6FB4AC;
    text-transform: uppercase;
    margin-bottom: 40px;
}

h1 {
    font-size: 3.5em;
    letter-spacing: -2px;
    font-family: 'Montserrat', sans-serif;
    line-height: 65px;
    font-weight: 600;
    color: #CCC;
}

h3 {
    font-size: 2.5em;
    letter-spacing: -2px;
    font-family: 'Montserrat', sans-serif;
    line-height: 65px;
    font-weight: 600;
    color: #6FB4AC;
}

p {
    color: #848d96;
    font-family: 'Lora', sans-serif;
    font-size: 1.3em;
    letter-spacing: -0.2px;
    line-height: 33px;
    padding: 40px 0;
}

.links ul li{
    font-family: 'Lora', sans-serif;
    color: #CCC;
    font-size: 1.2em;
    letter-spacing: -0.2px;
    line-height: 33px;
    text-align: right;
    transition: color 0.2s;
}

.links ul li:hover{
    color: #6FB4AC;
}

.links ul li a.disabled{
    text-decoration: line-through;
}

.social{
    margin: 40px 0;
    border-radius: 3px;
}

.credits{
    opacity: 0.4;
    color: #848d96;
    font-size: 0.8em;
    line-height: 21px;
}

@media (max-width: 1000px) {

    .main-container{
        position: relative;
        display: block;
    }

    .image{
        display: block;
        height: 80vh;
        width: 100%;
    }

    .card{
        width: 100%;
        height: auto;
    }

    .card-container{
        padding: 40px;
    }

    .social{
        padding: 20px 0;
        width: 100%;
        margin: 40px auto;
    }

    .social a{
        font-size: 2.5em;
        padding: 2px;
    }

}
