/* Reset default styles */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* Global styles */
html {
    --background-color: rgb(40, 40, 40);
    --text-color: rgb(255, 255, 255);
    background-color: rgb(40,40,40) !important;
    height: 100%;
    font-size: 14pt;
}

body {
    height: 100%;
    width: 100%;
    color: var(--text-color);
    font-family: "Source Code Pro", monospace;
    font-size: 16px;
    line-height: 1.5;
}

a {
    color: hsl(229, 100%, 87%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 2rem;
    border-bottom: 1px solid hsl(229, 6%, 26%);
    max-width: 700px;
    margin: 0 auto;
    font-family: sans-serif;
}