:root {
  --font-size--4: 0.8rem;
  --font-size--3: 0.85rem;
  --font-size--2: 0.9rem;
  --font-size--1: 0.95rem;
  --font-size-0: 1rem;
  --font-size-1: 1.2rem;
  --font-size-2: 1.4rem;
  --font-size-3: 1.6rem;
  --font-size-4: 1.8rem;
  --font-size-5: 2rem;
  --sans-serif-font-family: "Inter", Arial, Helvetica, sans-serif;
  --monospace-font-family: "Google Sans Code", monospace;
}

:root {
  --background-color-0: #f3f3ec;
  --background-color-1: #eeeee4;
  --background-color-2: #eae9dd;
  --background-color-3: #e5e4d5;
  --background-color-4: #e0dfce;
  --background-color-5: #dbdac6;
  --background-color-6: #d7d6bf;
  --background-color-7: #d2d1b7;
  --background-color-8: #cdccb0;
  --background-color-9: #c8c7a8;
  --background-color-10: #c4c2a1;
  --background-color-0-transparent: #0f0f0f2d;
  --foreground-color-0: #2e2e2e;
  --foreground-color-1: #464646;
  --foreground-color-2: #5d5d5d;
  --foreground-color-3: #747474;
  --foreground-color-4: #514e1e;
  --foreground-color-5: #635f35;
  --foreground-color-6: #74714b;
  --foreground-color-7: #858362;
  --foreground-color-8: #979578;
  --foreground-color-9: #a8a68f;
  --foreground-color-10: #bab8a5;
  --accent-color-0: #1f64bf;
  --border-color-0: #a8a68f;
  --border-color-1: #979578;
  --border-color-2: #858362;
}

html.dark {
  --background-color-0: #0f0f0f;
  --background-color-1: #191919;
  --background-color-2: #232323;
  --background-color-3: #2e2e2e;
  --background-color-4: #383838;
  --background-color-5: #424242;
  --background-color-6: #4c4c4c;
  --background-color-7: #575757;
  --background-color-8: #616161;
  --background-color-9: #6b6b6b;
  --background-color-10: #757575;
  --background-color-0-transparent: #0f0f0fbb;
  --foreground-color-0: #f3f3f3;
  --foreground-color-1: #e8e8e8;
  --foreground-color-2: #dcdcdc;
  --foreground-color-3: #d1d1d1;
  --foreground-color-4: #c5c5c5;
  --foreground-color-5: #b9b9b9;
  --foreground-color-6: #aeaeae;
  --foreground-color-7: #a2a2a2;
  --foreground-color-8: #979797;
  --foreground-color-9: #8b8b8b;
  --foreground-color-10: #7f7f7f;
  --foreground-color-11: #747474;
  --foreground-color-12: #686868;
  --foreground-color-13: #5d5d5d;
  --foreground-color-14: #515151;
  --accent-color-0: #ff7900;
  --border-color-0: #424242;
  --border-color-1: #575757;
  --border-color-2: #6b6b6b;
}

#sidebar {
  width: 240px;
  height: fit-content;
  max-height: 100vh;
  overflow-y: auto;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color-0);
  background-color: var(--background-color-0);
}
#sidebar > *:not(:last-child) {
  border-bottom: 1px solid var(--border-color-0);
}
#sidebar #titleLink {
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  letter-spacing: -0.04rem;
}
#sidebar .section {
  padding: 1rem;
}
#sidebar .section.noPadding {
  padding: 0;
}
#sidebar .section .sectionTitle {
  margin: 0;
  margin-bottom: 1rem;
  color: var(--foreground-color-8);
}
#sidebar #latest p {
  margin: 0;
}
#sidebar #latest p a {
  color: inherit;
  text-decoration: none;
}
#sidebar #latest p .date {
  color: var(--foreground-color-8);
  font-size: 0.8rem;
}
#sidebar #latest p:hover .title {
  color: var(--accent-color-0);
}
#sidebar #latest p:not(:last-child) {
  margin-bottom: 0.5rem;
}
#sidebar #changelog p {
  margin: 0;
  font-size: 0.8rem;
}
#sidebar #changelog p .date {
  color: var(--foreground-color-8);
}
#sidebar #navLinks a {
  text-decoration: none;
  color: inherit;
}
#sidebar #navLinks a.selected {
  color: orangered;
}
#sidebar #search form {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
#sidebar #search form input {
  flex: 1;
  width: inherit;
  color: inherit;
  background-color: var(--background-color-3);
  border-radius: 0px;
  border: none;
  outline: none;
  padding: 0.25rem 0.5rem;
  border: 1px solid var(--border-color-0);
}
#sidebar #search form button {
  color: inherit;
  background-color: var(--background-color-2);
  border: none;
  outline: none;
  margin: 0;
  width: fit-content;
  border: 1px solid var(--border-color-0);
  cursor: pointer;
}
#sidebar #search form button img {
  position: relative;
  top: 0.08rem;
}
#sidebar #search form button:hover {
  background-color: var(--accent-color-0);
  border-color: var(--accent-color-0);
  color: var(--background-color-0);
}
#sidebar #changelog {
  height: 200px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#sidebar #changelog .sectionTitle {
  margin: 0;
  padding: 1rem;
  position: sticky;
  top: 0;
  background-color: var(--background-color-0);
}
#sidebar #changelog .scrollBox {
  padding: 0 1rem;
  flex: 1;
}
#sidebar #changelog .scrollBox p {
  margin: 0;
  margin-bottom: 1rem;
}

/*****************/
/* HOVER TOOLTIP */
/*****************/
#hoverTooltip {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  border: 1px solid var(--border-color-0);
  background-color: var(--background-color-1);
  z-index: 9999;
  pointer-events: none;
}
#hoverTooltip .content {
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
#hoverTooltip .content .symbol {
  font-size: 0.9rem;
}
#hoverTooltip .content .raw {
  display: flex;
  align-items: center;
  justify-content: center;
}
#hoverTooltip .content.monospace {
  color: var(--foreground-color-4);
  font-family: var(--monospace-font-family);
  font-size: 0.8rem;
}
#hoverTooltip.visible {
  opacity: 1;
  visibility: visible;
}

* {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  position: relative;
  color: var(--foreground-color-0);
  background-color: var(--background-color-0);
  font-family: var(--sans-serif-font-family);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 14px;
}

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.02rem;
}

a {
  font-size: inherit;
  color: var(--foreground-color-4);
  text-decoration-style: dotted;
}

p {
  line-height: 1.5;
  letter-spacing: -0.005rem;
}

pre,
code {
  font-size: 0.9rem;
  font-family: var(--monospace-font-family);
}

input,
button {
  font-family: inherit;
  font-size: inherit;
}

hr {
  border: none;
  border-top: 1px solid var(--border-color-0);
}

#logo {
  margin-bottom: 1rem;
}

#everything {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 500px;
  padding: 2rem 1rem;
  margin: 0 auto;
}

.shadowContainer {
  box-shadow: 6px 6px var(--background-color-4);
  border: 1px solid var(--border-color-0);
}

.post {
  position: relative;
  background-color: var(--background-color-1);
  margin-bottom: 2rem;
}
.post .dateContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color-0);
}
.post .dateContainer .date {
  color: var(--foreground-color-4);
  font-size: 0.8rem;
  font-family: var(--monospace-font-family);
}
.post .dateContainer .date.loading {
  color: var(--foreground-color-8);
}
.post .dateContainer .divider {
  flex: 1;
  border-top: 1px solid #888;
}
.post .thumbnail {
  width: 100%;
  border-bottom: 1px solid var(--border-color-0);
}
.post .thumbnail img {
  display: block;
  width: 100%;
}
.post .content {
  padding: 0 1rem;
  padding-bottom: 1rem;
}

.lastPost .thumbnail {
  border: none;
}

footer {
  color: var(--foreground-color-4);
  margin: 2rem 0;
}
footer .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 1rem;
  margin-bottom: 2rem;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background-color: var(--background-color-1);
}
footer .content .stacked span {
  display: block;
}
footer .content .stacked span:not(:last-child) {
  margin-bottom: 0.25rem;
}
footer .content .stacked .copyright {
  color: var(--foreground-color-6);
}
footer .thumbnail {
  width: 100%;
}
footer .thumbnail img {
  display: block;
  width: 100%;
}

.divider {
  width: 100%;
  border-top: 1px solid black;
}

/*# sourceMappingURL=styles.bundle.css.map */
