@import 'keyframe.css';

* {
    margin: 0;
    padding: 0;

    -webkit-font-smoothing: antialiased;
}

body {
    background: #f9f9f9;
    color: #222;
    
    font: 16px/24px "Bitstream Vera Sans Mono", "Anonymous Pro", "Consolas", monospace;
    text-shadow: 0 1px 1px rgba(0,0,0,.25);
    letter-spacing: -0.01em;
}

ul.content {
    list-style: none;
    position: absolute;
    left: 130px;
    top: 40%;
    width: 800px;
    margin-top: -62px;
}

ul.content-sofar {
    list-style: none;
    position: absolute;
    left: 130px;
    top: 15%;
    width: 800px;
    margin-top: -62px;
}

ul.content-bucketlist {
    list-style: none;
    position: absolute;
    left: 130px;
    top: 20%;
    width: 800px;
    margin-top: -62px;
}

ul li {
    padding: 10px 0;
}

.heading{
    font-weight: 400;
}

#first-line {
    font-size: 16px;
}

a {
    text-decoration: none;
    color: #111;
    font-weight: bold;
    border-bottom: 1px dotted #ccc;
    background: #111;
    color: #fff;
}

a:hover {
    background: #666;
    color: #fff;
}

.typing {
    position: relative;
    display: inline-block;
    width: 8px;
    text-indent: -999em;
    background: #ccc;
    -webkit-animation: flick 1s infinite;
    -moz-animation: flick 1s infinite;
    -ms-animation: flick 1s infinite;
    -o-animation: flick 1s infinite;
    animation: flick 1s infinite;
}


.tab{
    margin-left: 1em;
}

.space-top{
    margin-top: 3em;
}


.social-links {
    position: absolute;
    left: 130px;
    top: 40%;
    margin-top: 218px;
    -webkit-animation: logo 35s 1;
    -moz-animation: logo 35s 1;
    -ms-animation: logo 35s 1;
    -o-animation: logo 35s 1;
    animation: logo 35s 1;
}

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

.social-links li a {
    display: block;
    width: 40px;
    height: 28px;
    text-indent: -999px;
    overflow: hidden;
    background: url('images/social-links.png') no-repeat;
    text-decoration: none;
    border: 0;
}

.social-links li a.linkedin {
    background-position: -28px 0;
    width: 20px;
}

.social-links li a.linkedin:hover {
    webkit-filter: opacity(0.6);
}

.social-links li a.twitter {
    background-position: -55px 0;
    width: 20px;
}

.social-links li a.twitter:hover {
    webkit-filter: opacity(0.6);
}

.social-links li a.facebook {
    background-position: -79px 0;
    width: 14px;
}

.social-links li a.facebook:hover {
    webkit-filter: opacity(0.6);
}

@media (max-width: 35em) {
    body {
        font-size: 15px;
        min-height: 530px;
    }
    ul.content {
        width: 80%;
        top: 20%;
        left: 10%;
        min-width: 290px;
    }
    div.social-links {
        top: inherit;
        bottom: 20px;
        margin-top: 0px;
        left: 10%;
    }
    div.social-links ul {
        width: 235px;
        left: 10%;
    }
    li.facebook-like {
        display: none;
    }
}