
@import url(theme-switcher.css);
@import url(themes/frappe.css);
@import url(themes/latte.css);
@import url(themes/macchiato.css);
@import url(themes/mocha.css);


body {
    font-family: Verdana, Arial, sans-serif;
}

h1, h2, h3 {
    font-family: Arial, sans-serif;
}

.header {
    color: var(--rosewater);
}

/* Nav bar */

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: var(--base);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;

}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: var(--subtext-0);
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: var(--text);
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }

  .sidenav a {
    font-size: 18px;
  }
}


body::after {
  content: "";
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  width: clamp(96px, 14vw, 168px);
  aspect-ratio: 564 / 547;
  background: url(/assets/media/theme/teto.png) center / contain no-repeat;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}