
@media screen and (max-width: 800px) {
    body {
	width: calc(100% - 8rem) !important;
    }
    #logo {
	width: 100%;
    }
}

body {
    background-color: black;
    color: white;
    margin: 4rem;
    /* font-family: serif */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    width: 640px;
}

ul {
    list-style-type: square;
    /* list-style-position: inside; */
    padding-left: 1rem;
}
li {
    padding-left: 0.5rem;
}

a {
    color: white;
    background-color: black;
    transition: background-color 0.3s ease-in-out, color 0.5s ease-in-out;
    -moz-transition: background-color 0.3s ease-in-out, color 0.5s ease-in-out;
    -webkit-transition: background-color 0.3s ease-in-out, color 0.5s ease-in-out;
    -o-transition: background-color 0.3s ease-in-out, color 0.5s ease-in-out;
}
a:hover {
    color: black;
    background-color: white;
}

#title {
    /* font-family: Didot, Times, "Times New Roman", serif; */
    font-family: Times, "Times New Roman", serif;
    user-select: none;
}
#nav {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
#footer {
    margin-top: 2rem;
}
code, pre {
    font-size: 1rem;
}
pre {
    margin-left: 3rem;
}
blockquote {
	border-left: 2px white solid;
	padding-left: 1rem;
}

