@font-face {
  font-family: "JetBrains Mono";
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
  src: url("/assets/fonts/jetbrains-mono-regular.woff2") format("woff2");
}
@font-face {
  font-family: "JetBrains Mono";
  font-style: italic;
  font-weight: 100 800;
  font-display: swap;
  src: url("/assets/fonts/jetbrains-mono-italic.woff2") format("woff2");
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #1a1a1e;
  color: #e0e0e0;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

a {
  color: seagreen;
  text-decoration: none;
}
a:hover {
  color: #5dbb7e;
}

h1, h2 {
  margin: 0;
  padding: 0;
}

.page {
  max-width: 960px;
  width: 100%;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  padding: 2rem 0 0.5rem 0;
  border-bottom: 1px dotted #606060;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e0e0e0;
  display: block;
}
.site-header .site-title:hover {
  color: #5dbb7e;
}
.site-header .site-tagline {
  font-size: 0.9rem;
  color: seagreen;
}
.site-header .site-nav a {
  font-size: 0.9rem;
  color: seagreen;
}
.site-header .site-nav a:hover {
  color: #5dbb7e;
}

.feed {
  flex: 1;
  padding: 2rem 0;
}

.feed-item-full {
  padding: 2rem 0;
  border-bottom: 1px dotted #606060;
}
.feed-item-full:last-child {
  border-bottom: none;
}

.feed-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
}
.feed-item-header h1, .feed-item-header h2 {
  font-size: inherit;
  font-weight: inherit;
}
.feed-item-header .feed-item-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.feed-item-header .feed-item-title a {
  color: seagreen;
}
.feed-item-header .feed-item-title a:hover {
  color: #5dbb7e;
}
.feed-item-header .feed-item-date {
  font-size: 0.7rem;
  color: #a0a0a0;
  white-space: nowrap;
  margin-left: 1rem;
}

.post {
  flex: 1;
  padding: 2rem 0;
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted #606060;
}
.post-header h1 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.post-header .post-date {
  font-size: 0.7rem;
  color: #a0a0a0;
}

.post-content {
  line-height: 1.8;
}
.post-content h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 2rem 0 0.5rem;
}
.post-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.post-content p {
  margin-bottom: 1rem;
}
.post-content a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.post-content code {
  font-size: 0.8rem;
  background: #24242a;
  padding: 0.1rem 0.3rem;
  border: 1px solid #606060;
}
.post-content pre {
  background: #24242a;
  border: 1px dotted #606060;
  padding: 1rem;
  overflow-x: auto;
  margin-bottom: 1rem;
}
.post-content pre code {
  background: none;
  border: none;
  padding: 0;
}
.post-content blockquote {
  border-left: 2px solid seagreen;
  padding-left: 1rem;
  color: #a0a0a0;
  margin-bottom: 1rem;
}
.post-content img {
  max-width: 100%;
  height: auto;
}
.post-content ul, .post-content ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px dotted #606060;
  font-size: 0.7rem;
  color: #525252;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}

.homepage {
  flex: 1;
}
.homepage h1 {
  margin-top: 3rem;
}

.cursor::after {
  content: "";
  display: inline-block;
  width: 1ch;
}

.cursor.visible::after {
  content: ".";
}

.cursor.blink::after {
  content: ".";
  animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
  0%, 40% {
    opacity: 1;
  }
  50%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hero {
  padding: 3rem 0 2rem;
  border-bottom: 1px dotted #606060;
}
.hero h1 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.hero .tagline {
  font-size: 1rem;
  color: seagreen;
  margin-bottom: 1rem;
}
.hero .subtitle {
  font-size: 0.8rem;
  color: #a0a0a0;
  max-width: 40rem;
}

.features {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.features .feature {
  padding: 1rem;
  border: 1px dotted #606060;
  background: #24242a;
}
.features .feature h2 {
  font-size: 0.8rem;
  font-weight: 600;
  color: seagreen;
  margin-bottom: 0.5rem;
}
.features .feature p {
  font-size: 0.7rem;
  color: #a0a0a0;
  line-height: 1.5;
}

.accent {
  color: seagreen;
}

.cta {
  padding: 2rem 0;
  border-top: 1px dotted #606060;
}
.cta p {
  font-size: 0.8rem;
  color: #a0a0a0;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  padding: 0.4rem 1.2rem;
  border: 1px dotted seagreen;
  background: transparent;
  color: seagreen;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
}
.btn:hover {
  color: #5dbb7e;
  border-color: #5dbb7e;
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 0 1.5rem;
  }
  .hero h1 {
    font-size: 1.2rem;
  }
  .features {
    grid-template-columns: 1fr;
  }
}

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