@import url('https://fonts.googleapis.com/css2?family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
	/* EXTRA CHEESE */
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 20px;
}
body {
    background-image: url('/assets/img/bg.gif');
    color: #fff;
}
.container {
    background-color: #111;
    margin: 4px auto;
    max-width: 840px;
    border: 8px #ffa700 ridge;
}
.header-img {
    display: block;
    max-width: 100%;
    margin-bottom: 0.5em;
}
.nav {
    background: #ffa700;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1;
}
.nav a {
    font-size: 15pt;
    text-decoration: none;
    color: black;
    font-weight: bold;
    display: inline-block;
    padding: 0.2em 0.5em;
    transition: background 0.2s;
}
.nav a:hover {
    font-style: italic;
    color: black;
}
.nav a:visited {
    color: black;
    text-decoration: underline;
}
.footer {
    text-align: center;
}
hr {
    border-color: #ffa700;
}
a {
    color: #ffa700;
}
a:hover, a:visited {
    color: #ffb000;
}
table {
    margin: .5em auto 1.5em auto;
    width: 98%;
    border-collapse: collapse;
}
td, th {
    border: 1px #ffa700 outset;
    text-align: left;
    padding: 8px;
}
th {
    background-color: black;
}
tr:nth-child(odd) {
    background-color: #111111;
}
thead th {
    padding: .5em .4em;
    text-align: left;
}
thead td {}
tbody td {
    padding: .5em .4em;
}
tbody th {}
tfoot th {}
tfoot td {}

pre, code {
    background-color: grey;
    color: #ffa700;
    font-family: monospace;
    border: 5px #75ebff solid;
    overflow: auto;
}

blockquote {
    border-left: 2px solid #ffa700;
    background-color: red;
    padding: 0.5em;
    overflow: auto;
    color: white;
}

q {
	font-style: italic;
}
