/* Minimal Paul Graham style CSS */

body {
    background-color: #ffffff;
    margin: 40px;
    font-family: "Times New Roman", Times, serif;
    font-size: 18px;
    color: #000000;
}

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

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #000099;
}

img {
    border: 0;
}

table {
    max-width: 100%;
}

@media (max-width: 500px) {
    body {
        margin: 20px;
    }
}
