/*  Blue: #272c49
 *  Orange: #fcba28
 *  Gray: #51566c
 *  text: #343434
 */

* {
    font-size: 100%;
    font-family: 'Source Sans Pro', sans-serif;
    color: #343434;
}

body {
    max-width: 1080px;
    margin: 0 auto !important;
    float: none !important;
    background-image: linear-gradient(180deg,hsla(0, 0%, 100%, 0.85),hsla(0, 0%, 100%, 0.7)), url('/assets/img/dotted-background.png');
    background-size: 140px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.004) !important;
}

html {
    font-size: 100%;
}

h1 {
    font-family: 'Source Sans Pro', sans-serif;
}

h2 {
    font-size: 1.6em;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0.21em;
    text-transform: uppercase;
}

p > strong {
    font-weight: 400;  
}

p > strong::after {
    height: 0.5rem;
    left: -0.25rem;
    right: -0.25rem;
}

strong {
    position: relative;
}

strong::after {
    content: '';
    position: absolute;
    bottom: -0.125rem;
    left: -0.5rem;
    right: -0.5rem;
    height: 0.75rem;
    z-index: -1;
    background-image: url('/assets/img/underline.svg');
    background-repeat: no-repeat;
    background-size: cover;
}



.hero {
    width: 100%;
    padding: 1em;
}

.hero-img {
    border: 0.8em solid white;
    border-radius: 50%;
    box-shadow: 0px 0px 32px -7px rgba(0,0,0,0.2);
    margin: 1em auto;
}

.hero-blurb {
    margin: 1em auto;
    max-width: 30em;
}

.hero-name {
    font-size: 2.5em;
    margin-top: 0.4em;
}

.hero-title {
    /* color: #51566c; */
    color: #3291ff;
    font-smooth: 1em;
}

.hero-text {
    margin-top: 1em;
    font-size: 1.2em;
}

.hero-hr {
    margin: 2em auto 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.hero-socials {
    display: flex;
    list-style: none;
    padding: 2em;
    justify-content: space-evenly;
    max-width: 320px;
    margin: 0 auto;
}

.hero-socials i {
    opacity: 0.8;
    background: #ffffff25;
    padding: 0.3em;
    border-radius: 50%;
    box-shadow: 0px 0px 32px -7px rgba(0,0,0,0.3);
    transition: all .2s ease-in-out;
}

.hero-socials i:hover {
    color: #fcba28;
    opacity: 0.9;
    background: #ffffff3d;
    transform: scale(1.1);
}

.fa-linkedin {
    color: #0b66c3;
}

.fa-github {
    color: #171516;
    border-radius: 50%;
}

.fa-instagram {
    color: #e91e63;
    border-radius: 30%;
}

@media (min-width: 600px) {
    .hero-name {
        font-size: 3.4em;
        letter-spacing: .06em;
    }

    .hero-title {
        margin-top: -0.3em;
    }
}

@media screen and (min-width: 890px) {
    .hero {
        display: flex;
        justify-content: center;
        align-content: center;
        margin-top: 4em;
    }

    .hero-portrait {
        margin-left: auto;
    }

    .hero-blurb {
        margin-left: 3em;
    }

    .hero-name {
        margin-top: -0.4em;
    }
}