:root {
  --background: #3d384e;
    --accent: #b5c08a;
    --foreground: #dbe5e2;
}

body {
  margin: 0;
  font-family: Verdana, Geneva, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
}

h1 {
  font-family: Verdana, Geneva, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 23px;
}
h3 {
  font-family: Verdana, Geneva, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  line-height: 23px;
}
p {
  font-family: Verdana, Geneva, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 23px;
}
li {
  font-family: Verdana, Geneva, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 23px;
}
blockquote {
  font-family: Verdana, Geneva, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 23px;
}
pre {
  font-family: Verdana, Geneva, sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  line-height: 23px;
}

a {
  color: var(--foreground);
  text-decoration: underline;
}
a:hover {
  text-decoration: underline;
  text-decoration-style: wavy;
}
a:visited {
  color: var(--foreground);
}

.wrapper {
  background-color: var(--accent);
  height: 100vh;
  display: block;
  position: absolute;
  height: 20px;
  bottom: auto;
  top: 0;
  left: 0;
  right: 0;
}

.container {
  margin: auto;
  margin-top: 20px;
  width: 50vw;

  background-color: var(--background);
}
@media only screen and (min-width: 100px) {
  .container {
    width: 95vw;
    min-width: 250px;
  }
}
@media only screen and (min-width: 500px) {
  .container {
    width: 80vw;
  }
}
@media only screen and (min-width: 1000px) {
  .container {
    width: 800px;
  }
}

header {
  margin-top: 20px;
  padding-top: 20px;
}

header h4 {
  margin: 0px;
  font-size: 30px;
  background-color: var(--background);

  border-bottom: 2px dotted var(--accent);
}
header h4 a {
  color: var(--accent) !important;
  text-decoration: none;
}
header h4 a:hover {
  text-decoration: none;
}

header nav {
  margin: 0;
  margin-top: 5px;

  text-align: left;
}

header nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header nav li {
  display: inline-block;
  font-size: 20px;
  padding-left: 0px;
}
header nav li a {
  text-decoration: text;
  padding: 5px 10px;

  background-color: var(--background);

  display: inline-block;
}
header nav li a.active {
  border: none;

  background-color: var(--accent);
  color: var(--background);

  text-decoration: none;

  /* Use this to disable using the active link */
  /* pointer-events: none;
  cursor: default; */
}
header nav li a:not(.active) {
  border: none;
  background-color: var(--background);
}
header nav li a.active:hover {
  text-decoration: none;
}

footer {
  padding-bottom: 20px;
}

footer h6 {
  margin-top: 20px;
  padding-top: 20px;
}

.content h4 {
  padding-top: 20px;
  font-size: 22px;
  margin-bottom: 5px;
}

.content ul.projects li {
  margin-bottom: 7px;
}

.content ul.projects li a {
  padding-right: 4px;
}

.content h6.postmeta {
  font-weight: normal;
  margin: 0;
}

pre.chroma {
  /*margin-right: 20px;
  margin-left: 20px;*/
  padding: 10px;
  overflow: scroll;
}

pre.empty {
  color: #f8f8f2;
  background-color: #433e56;
  /*margin-right: 20px;
  margin-left: 20px;*/
  padding: 10px;
  overflow: scroll;
}
