body {
  background-color: #161411;
  color: #ad9a74;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  height: 80vh;
}

header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
header pre {
  font-size: 4px;
}

main {
  display: flex;
  flex-flow: column nowrap;
  gap: 1em;
  height: 100%;
}

nav {
  border: 2px solid #ad9a74;
}
nav button {
  padding: 10px 1em;
  background-color: rgba(255, 255, 255, 0);
  color: #ad9a74;
  border: none;
  width: fit-content;
  text-decoration: underline;
  font-family: "Courier New", Courier, monospace;
  text-wrap-mode: nowrap;
  cursor: pointer;
}
nav #btnContainer {
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
  overflow-x: scroll;
  scrollbar-width: thin;
  scrollbar-color: #ad9a74 rgba(255, 255, 255, 0);
}

#notes {
  display: flex;
  flex-flow: column nowrap;
  border: 2px solid #ad9a74;
  max-height: 92%;
}
#notes #notesContainer {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #ad9a74 rgba(255, 255, 255, 0);
  padding: 0 2em;
}

.topHead {
  background-color: #ad9a74;
  color: #161411;
  text-align: center;
}
.topHead h2 {
  margin: 0;
  padding: 0;
  font-size: large;
}

@media (min-width: 600px) {
  body {
    height: 80vh;
  }
  header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
  }
  header pre {
    font-size: 7px;
  }
  main {
    display: flex;
    flex-flow: row nowrap;
    height: 100%;
  }
  nav {
    border: 2px solid #ad9a74;
    width: 20%;
  }
  nav button {
    padding: 5px 1em;
  }
  nav #btnContainer {
    display: flex;
    flex-flow: column nowrap;
    overflow-y: scroll;
    overflow-x: auto;
    height: 95%;
    max-height: 99%;
    padding: 5px 1em;
  }
  #notes {
    border: 2px solid #ad9a74;
    width: 80%;
    height: 100%;
    max-height: 99%;
  }
  #notes #notesContainer {
    padding: 1em;
    height: 96%;
  }
  .topHead {
    text-align: start;
  }
}

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