body{
  background-color: light-dark(#d1d1d1, #1d1d1d);
  color: light-dark(black, white);
  font-family: Courier New;
}
P{font-family: inherit;}
nav{border: none; 
  position: fixed;
  top: 0;
  background-color: light-dark(#d1d1d1, #1d1d1d);
  width: 100%;
  z-index: 2147483647;
}
nav a:hover{cursor: pointer; color: #808080;}
[data-theme="light"] {
  color-scheme: light;
}
[data-theme="dark"] {
  color-scheme: dark;
}
.themeImg {
  font-family: inherit;
  background-color: transparent;
  border-color: transparent;}
.themeImg:hover {
  cursor: pointer;
}
.navButton{
  filter: invert(0);
}
a:link, a:visited {
  color: light-dark(black, white);
  text-decoration: none;
}
a:hover, a:active {
  color: light-dark(black, white);
  cursor:pointer;
}
input.search {
  font-family: inherit;
  width: 300px;
  background-color: light-dark(#e6e6e6, #121212);
  overflow: auto;
  border-radius: 5px;
  border-width: 0px;
  height: 5vh;
  margin: 0;
  padding: 0;
}
div.body {
  margin-left: 15%;
  padding-left: 10px;
}
ul.menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 15%;
  background-color: light-dark(#e6e6e6, #121212);
  height: 100%;
  position: fixed;
  overflow: auto;
  border-radius: 5px;
  word-break: break-all;
}
ul.menu li a {
  display: block;
  color: light-dark(black, white);
  padding: 8px 16px;
  text-decoration: none;}
  ul.menu li a.active {
  background-color: #555;
  color: white;}
  ul.menu li a:hover:not(.active) {
  background-color: light-dark(#808080, #454545);
  color: white;
  word-break: break-all
}
span.dropdown{
  display: inline-block;
  transition: height 0.5s;
}
span.dropdown span {
  display: none;
  position: absolute;
  background-color: light-dark(#e6e6e6, #121212);
  min-width: 160px;
  z-index: 1;
  border-radius: 10px;
  height: 0px;
  transition: height 0.5s;
}
span.dropdown span a {
  color: light-dark(black, white);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  border-radius: 10px;
  transition: height 0.5s;
}
span.dropdown span a:hover {background-color: light-dark(#808080, #454545);}
span.dropdown:hover  span{display: inline-block;height: fit-content;}

