body {
  font-family: Arial, sans-serif;
  color: white;
  background-color: #141414;
}

html {
  scroll-behavior: smooth;
}

code {
  background-color: #3a3a3a;
  padding: 1.2em;
  border: 1px solid rgba(250, 250, 250, 0.2);
  display: block;
  white-space: pre-wrap;
  font-family: monospace;
  border-radius: 5px;
}

header {
  font-size: 2em;
  font-family: Tahoma;
  font-weight: bold;
}

#navbar {
  position: fixed;
  min-width: 200px;
  top: 0px;
  left: 0px;
  width: 250px;
  height: 100%;
  border-right: solid;
  border-right-color: currentcolor;
  background-color: #141414;
  border-color: rgba(250, 250, 250, 0.4);
}

#main-doc {
  position: absolute;
  left: 280px;
  padding: 20px;
}

a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
}

a:hover {
  color: crimson;
}

#navbar ul li {
  list-style-type: none;
}

#navbar ul {
  padding: 0;
  text-indent: 2em;
}

#navbar header {
  padding: 5px;
}

@media (max-width: 768px) {
  #navbar {
    width: 150px;
  }
}
