/** greetings, dear inspector :) */

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 38px;
    color: #333;
}

/** structure */
.outer {
    float: right;
    right: 50%;
    top: 30%;
    position: absolute;
}
.content {
    float: right;
    right: -50%;
    top: -30%;
    position: relative;
    text-align: center;
}
.seperator {
    height: 1.5em;
}


/** unhighlighted text */
.sn {
    font-size: 72px;
}
.sn-grey,
.web-selector:hover ~ .sn,
.mail-selector:hover ~ .sn,
.github-selector:hover ~ .sn {
    color: #CCC;
}
.textblock {
    font-size: 30px;
}

/** links */
.selector, .selector:hover, .selector:visited {
    text-decoration: none;
    margin: 0 0.2em;
    color: #666;
}
.selector .fa {
    color: #999;
}

/** highlights */
.web-selector:hover ~ .sn-web,
.mail-selector:hover ~ .sn-mail,
.github-selector:hover ~ .sn-github {
    color: #000;
    font-size: 88px;
}
.selector:hover, .selector:hover .fa {
    color: #000;
}
.selector:hover ~ .textblock {
    margin-top: -16px;
}

/** animations */
.selector, .selector i, .sn, .textblock {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}

