@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,700);
@import url(https://fonts.googleapis.com/css?family=Inconsolata:400,700&subset=latin);

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #FFFFFF;
    font-family: 'Roboto Slab', serif;
}

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

#wrapper {
    /* Center the wrapper while having it adjust to the content inside.
       Source:
       http://www.456bereastreet.com/archive/201303/how_to_shrinkwrap_and_center_elements_horizontally/
       */
    margin: 0 auto;
    width: intrinsic; /* for Safari */
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    /* fuck Internet Explorer */

    /* Alternative to the above solution (cheap hack to center the wrapper
       while not centering the text inside and without having to set a
       fixed size for the wrapper). Also, you need to set text-align:
       center; for the body tag */
    /* display: inline-block; */
    /* text-align: left; */
}


#public_key {
    color: #818181;
    font-family: 'Inconsolata', sans-serif;
    margin-top: 3em;
    margin-bottom: 3em;
}

#public_key a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed;
}
