/* 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: 50em;
    margin: 0px auto;
    padding: 0em 1em 1em 1em; 
    line-height: 1.6;

    /* This looks somehow nicer even if I know it's Wrong (TM) */
    text-align: justify;
}

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;
    color: #1da1f2;
}

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

img {
	width: 100%;
}

.center {
    text-align: center;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 4px;
    text-align: left;
    color: #fdfeff;
}

pre, h1, h2, h3, h4, h5, h6, p {
    color: #fdfeff;
}

body {
  background-color: #15202b;
}
