/* Layout */
    .wrapper {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-image: url('/images/motorbike-trail.png');
        background-size: cover;
        background-position: center;
        color: #fff;
        text-align: center;
        text-rendering: optimizeLegibility;
    }

    .wrapper:before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.25em;
    }

    .wrapper:after {
        content: '';
        position: fixed;
        top: 10px;
        right: 10px;
        bottom: 10px;
        left: 10px;
        border: 1px solid rgba(255,255,255,.2);
    }

    .wrapper-inner {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        z-index: 2;
        margin-top: -4%;
        max-width: 80%;
    }

    .wrapper-inner:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 337px;
        height: 337px;
        left: 50%;
        top: 50%;
        margin-left: -168px;
        margin-top: -168px;
        background-image: url(/images/circle-red.png);
        background-size: 100%;
    }

/* Type */
    .title {
        position: relative;
        z-index: 2;
        font-size: 34px;
        line-height: 1;
        letter-spacing: 0.2em;
        font-weight: 300;
        font-style: italic;
        font-family: 'Playfair Display', serif;
        margin-bottom: 0;
        margin-top: 0;
        text-transform: uppercase;
    }

    .name,
    .based-in {
        font-family: 'Josefin Sans', sans-serif;
        font-weight: 100;
        position: relative;
        z-index: 2;
        font-size: 13px;
        line-height: 2.2;
        font-weight: 300;
        letter-spacing: 0.4em;
        text-transform: uppercase;
    }

/* Social Links */
    .social-links {
        position: fixed;
        width: 475px;
        left: 50%;
        bottom: 50px;
        margin-left: -237px;
        padding: 0;
        list-style-type: none;
    }

    .social-links ul {
        margin: 0;
        padding: 0;
    }

    .social-links li {
        display: inline-block;
        margin: 0 10px;
    }

    .social-links a {
        color: white;
        opacity: .7;
        text-decoration: none;
        font-weight: 100;
        font-family: 'Josefin Sans', sans-serif;
    }

    .social-links li a {
        font-size: 25px;
    }


@media (max-width: 550px) {
    .title {
        margin-top: 20px;
        font-size: 24px;
        letter-spacing: 0.1em;
    }
    .based-in {
        font-size: 12px;
        letter-spacing: 0.2em;
    }
    .wrapper-inner {
        margin-top: -20%;
    }
    .wrapper-inner:before {
        width: 200px;
        height: 200px;
        margin-left: -100px;
        margin-top: -100px;
    }
}