* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
}

body {
  scroll-behavior: smooth;
  background-color: #111827;
  color: #9ca3af;
  /* Width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

body::-webkit-scrollbar {
  width: 0.5rem;
  height: 1rem;
}

body::-webkit-scrollbar-track {
  background: #111827;
}

body::-webkit-scrollbar-thumb {
  background: #22c55e;
}

body::-webkit-scrollbar-thumb:hover {
  background: #0c9940;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
}

main nav {
  background: #1f2937;
  height: 100%;
  width: 15rem;
}

main nav ul {
  padding-top: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

main nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  height: 3rem;
}

main nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

main nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

main nav ul li a:focus {
  background-color: #22c55e;
}

main div {
  padding: 1rem;
}
/*# sourceMappingURL=docs.css.map */