/*
http://kyleschaeffer.com/development/css-font-size-em-vs-px-vs-pt-vs/
*/

body {
    color: #444;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    background-color: #f1efeb;
}

section {
    margin-top: 32px;
    margin-bottom: 48px;
}

h1 {
    color: #333;
    font-family: "Raleway", sans-serif;
    font-size: 256%;
    font-weight: bold;
}

h2 {
    margin-top: 0px;
    margin-bottom: 8px;
    color: #333;
    font-family: "Raleway", sans-serif;
    font-size: 192%;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: #444;
}

a:hover {
    text-decoration: underline;
}

.sep {
    padding-left: 3px;
    padding-right: 3px;
    color: #888;
}

img.portrait {
    width: 384px;
}

.links a:hover {
    text-decoration: none;
}

.links img {
    height: 1.8em;
    -webkit-filter: grayscale(86%);
    filter: grayscale(86%);
    margin-left: 4px;
    margin-right: 4px;
}

.links img.grayscale {
    -webkit-filter: contrast(64%);
    filter: contrast(64%);
}

.links img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}

.hidden {
    display: none;
}
