body {
    margin: 30px auto;            /* Center it */
    padding: 15px;                /* make it not hit sides of the browser on small phones */
    background-color: #23262c;
    color: white;                
    font-size: 150%;             /* Smaller type works well for print, not the screen. */
    max-width:650px;             /* If your text hits the side of the browser, fuck off forever. You ever see a book like that? Yes? What a shitty book. */
    font-family: monospace;
}
a {
   text-decoration: none;        /* No <strike>*/
} 
a:link    {color: #FF4DA8;}   /* unvisited link */
a:visited {color: #FF4DA8;}   /* visited link */
a:hover   {color: #C259FF;}         /* mouse over link */
a:active  {color: red;}          /* selected link */
pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}
