:root {
  --text-color: black;
  --inverted-text-color: white;
  --background-color: white;
  --inverted-background-color: black;
  --border-color: black;
}

/* Dark mode styles */
.dark-mode {
  --text-color: white;
  --inverted-text-color: black;
  --background-color: black;
  --inverted-background-color: white;
  --border-color: white;
}


@font-face {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 300;
  src: local("Source Sans Pro Light"), local("SourceSansPro-Light"),
    url(/assets/dist/SourceSansPro-Light.otf) format("opentype");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

* {
  font-family: "Source Sans Pro";
  /* ,sans-serif; */
  background-color: var(--background-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  padding: 2em;
}

.font-smoothing {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.title {
  font-size: 2em;
}

.subtitle {
  padding: 1em 1em 1em 0em;
  font-size: 1.3em;
  color: var(--text-color);
}

.copyright {
  padding: 1em 1em 1em 0em;
  font-size: 0.7em;
}

div,
h1 {
  color: var(--text-color);
}

.navcontainer ul {
  list-style-type: none;
}

.container {
  padding: 1em;
  font-size: large;
  border: 0.1px solid var(--border-color);
}

.container div {
  padding: 0.5em 0em 0.5em 0em;
}

.container-list {
  padding: 0em 0em 0.5em 2em;
}

.navcontainer ul li a {
  text-decoration: none;
  color: var(--text-color);
}

.navcontainer ul li a:hover {
  color: var(--inverted-text-color);
  background-color: var(--inverted-background-color);
}

.navcontainer li {
  padding: 0em 0em 0.5em 0em;
}

.navcontainer-title {
  font-size: 1.5em;
}

.navcontainer .container a {
  text-decoration: underline;
}

.mac-theme {
  text-decoration: none;
  color: var(--text-color);
}

@media only screen and (min-width: 1368px) {
  .navcontainer li {
    width: 40%;
  }
}

@media only screen and (max-width: 1367.99px) {
  .navcontainer li {
    width: 60%;
  }
}

@media only screen and (max-width: 992px) {
  .navcontainer li {
    width: 80%;
  }
}

@media only screen and (max-width: 576px) {
  .navcontainer li {
    width: 100%;
  }
}
