body {
  background: #23243a;
  color: #deecfc;
  font-family: 'Fira Mono', 'Consolas', monospace;
  margin: 0;
  padding: 0;
}

main {
  max-width: 650px;
  margin: 44px auto 0 auto;
  padding: 26px 14px 24px 14px;
}

header h1 {
  font-size: 3em;
  color: #a3cef1;
  font-family: monospace;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
header h2 {
  font-size: 1.6em;
  color: #dabfff;
  font-family: monospace;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 10px;
}
.back-link {
  font-size: 1.1em;
  margin-bottom: 22px;
}
.back-link a {
  color: #b6fcd5;
  text-decoration: none;
  transition: color 0.15s;
}
.back-link a:hover {
  color: #a3cef1;
  text-decoration: underline;
}

.search-bar {
  margin-bottom: 34px;
}
.search-bar input[type="text"] {
  width: 100%;
  padding: 12px 11px;
  font-size: 1.1em;
  background: #181a24;
  color: #e4c4fe;
  border: 2px solid #594261;
  border-radius: 8px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.search-bar input[type="text"]:focus {
  border-color: #a3cef1;
}

#blogPosts {
  margin-top: 8px;
}
.blogpost {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 6px;
}
.blogpost h3 {
  font-size: 1.4em;
  color: #faf6ff;
  margin-bottom: 7px;
  margin-top: 0;
}
.summary {
  color: #b7bedd;
  font-size: 1.11em;
  margin-bottom: 8px;
}
.timestamp {
  display: block;
  position: absolute;
  right: 8px;
  bottom: 0px;
  color: #415172;
  font-size: 1em;
  font-family: monospace;
  letter-spacing: 0.02em;
  background: none;
}
.divider {
  color: #41397f;
  user-select: none;
  text-align: center;
  margin: 18px 0 18px 0;
  font-size: 1.15em;
  letter-spacing: 4px;
  pointer-events: none;
}

#sprite {
  position: fixed;
  /*top: 20px; */
  bottom: 20px;
  right: 20px;
  width: 128px;
  z-index: 1000;
  pointer-events: none;
}

#folders {
  margin-bottom: 20px;
}

.folder-link {
  margin-bottom: 15px;
}

.folder-link a {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  background: #2d2e4a;
  border: 2px solid #594261;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.folder-link a:hover {
  background: #3a3b54;
  border-color: #a3cef1;
  transform: translateY(-2px);
}

.folder-icon {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.folder-link h3 {
  font-size: 1.6em;
  color: #faf6ff;
  margin: 0 0 8px 0;
}

.folder-desc {
  color: #b7bedd;
  font-size: 1em;
}

