/* minimal CSS and no JS is the way to go :-) */
/* comments are ok; they'll be stripped later */

body {
    /* sans fonts are just nicer for the web */
    font-family: "Cantarell", sans-serif;    
    
    /* studies show (jaja) that people read better vertically
     * I happen to agree, so we enforce this with clever margins. */

    max-width: 35em;
    margin: 0px auto;
    padding: 0em 1em 1em 1em; 
    line-height: 1.6;
}

li {
    /* slightly nicer bullets */
    list-style-type: square;
    
    /* prevent lists from feeling cluttered */
    padding-top: 0.3em;
    padding-bottom: 0.3em;
}

/* center highest level headers and dates */
header, h1 { text-align: center; }

a {
    text-decoration: none;
}

.pixel-art {
	image-rendering: -moz-crisp-edges;
}
