@font-face {
  font-family: "Medula One";
  src: url("/static/fonts/Medula_One/MedulaOne-Regular.ttf");
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("/static/fonts/BarlowCondensed-Regular.ttf");
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: hidden;
  font-family: "Barlow Condensed";
  display: flex;
}
@media screen and (max-width: 850px) {
  body {
    overflow-y: initial;
  }
}
body .topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 4rem;
  background: rgb(20, 20, 20);
  color: white;
  align-items: center;
  padding: 0 1.5rem;
  box-sizing: border-box;
}
body .topbar a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 8px;
}
body .topbar a .bartitle {
  font-size: 1.8rem;
  margin-left: 0.5rem;
}
body .topbar a .barlogo {
  height: 1.2rem;
  width: 1.2rem;
  padding-top: 8px;
}
body .topbar .menuicon {
  margin-left: auto;
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  body .topbar {
    display: flex;
  }
}
body .sidebar {
  width: 16%;
  height: 100vh;
  padding: 1.5rem;
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  align-items: flex-end;
  background: rgb(20, 20, 20);
  color: white;
  box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 1400px) {
  body .sidebar {
    width: 20%;
  }
}
@media screen and (max-width: 1100px) {
  body .sidebar {
    width: 30%;
  }
}
@media screen and (max-width: 850px) {
  body .sidebar {
    position: fixed;
    top: 0;
    right: -50rem;
    width: 80%;
    z-index: 10;
    transition: right 0.2s ease-in-out;
  }
  body .sidebar.open {
    right: 0;
  }
}
body .sidebar .titlebar {
  display: flex;
  align-items: center;
  width: 100%;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.527);
  justify-content: flex-end;
}
body .sidebar .titlebar .homelink {
  display: flex;
  align-items: center;
  text-decoration: none;
}
@media screen and (max-width: 850px) {
  body .sidebar .titlebar .homelink {
    display: none;
  }
}
body .sidebar .titlebar img {
  height: 1.5rem;
  color: white;
}
body .sidebar .titlebar h1 {
  font-size: 2rem;
  font-family: "Medula One";
  margin-left: 1rem;
  color: white;
}
body .sidebar .titlebar .closeicon {
  display: none;
  margin-left: auto;
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  body .sidebar .titlebar .closeicon {
    display: initial;
  }
}
body .sidebar .menuitems {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: auto;
}
body .sidebar .menuitems a {
  text-decoration: none;
  color: white;
  font-family: "Barlow Condensed";
  font-size: 1.25rem;
  font-weight: bold;
  text-align: right;
}
body .sidebar .about {
  text-align: right;
  margin-top: auto;
  font-weight: bold;
}
body .sidebar .book {
  background: #5b8266;
  align-self: stretch;
  text-decoration: none;
  color: white;
  text-align: center;
  padding: 0.5rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 4px;
}
body .sidebar .book:hover {
  background: #71a182;
}
@media screen and (max-width: 850px) {
  body .sidebar {
    overflow-y: initial;
  }
}
body .maincontent {
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  width: 84%;
  overflow-y: scroll;
}
@media screen and (max-width: 850px) {
  body .maincontent {
    width: 100%;
    overflow-y: initial;
    margin-top: 4rem;
  }
}
body .maincontent a.previewtitle {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

/*# sourceMappingURL=base.css.map */
