/* Navigation styles */
body {
  line-height: 1.5;
}

.site-nav {
  background-color: #212121;
  padding: 1rem 0;
  border-bottom: 2px solid #2b942b;
  margin-bottom: 2rem;
}

.nav-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.nav-link {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s;
}

.nav-link:hover {
  opacity: 1;
  text-decoration: underline; 
  color: #00ffee;
  
}

.nav-link:focus-visible {
  opacity: 1;
  text-decoration: underline;
  color: #00ffee;
}

/* Homepage styling */
.container {
  max-width: 800px;
  margin: 0 auto;
}

/* Intro section spacing */
#main_content > p:first-of-type {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #b5e853;
}

/* Horizontal rule styling */
hr {
  border: none;
  border-top: 2px solid #00ff00;
  margin: 1rem 0;
  opacity: 0.6;
}

.site-header,
header {
  margin-bottom: 1rem;
}

.site-header h1,
header h1 {
  margin-bottom: 0.25rem;
}

.site-header h2,
header h2 {
  margin-top: 0;
}

/* Post items on homepage */
.post-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #333;
}

.post-item:last-child {
  border-bottom: none;
}

.post-item h2 {
  margin-bottom: 0.5rem;
}

.post-item h2 a {
  color: #5dc4ff;
  text-decoration: none;
}

.post-item h2 a:hover {
  color: #b5e853;
  text-decoration: underline;
}

.post-date {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.read-more {
  color: #00ff00;
  text-decoration: none;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
  color: #00ffee;
}

.read-more:focus-visible {
  text-decoration: underline;
  color: #00ffee;
}

/* Archive page */
.archive {
  font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  color: #b5e853;
}

.archive-year {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: #00ff00;
}

.archive-list {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 0;
}

.archive-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.35rem 0;
  border-bottom: 1px solid #222;
}

.archive-date {
  color: #6adf65;
  min-width: 7.5rem;
}

.archive-link {
  color: #5dc4ff;
  text-decoration: none;
}

.archive-link:hover,
.archive-link:focus-visible {
  color: #00ffee;
  text-decoration: underline;
}

/* Footer styling */
.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 0 2rem;
  margin-top: 4rem;
  border-top: 2px solid #00ff00;
  background-color: #151515;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: #00ff00;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.footer-icon {
  width: 1.6rem;
  height: 1.6rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-icon-solid {
  fill: currentColor;
  stroke: none;
}

.footer-link:hover {
  opacity: 0.7;
  text-decoration: underline;
  color: #00ffee;
}

.footer-link:focus-visible {
  opacity: 0.7;
  text-decoration: underline;
  color: #00ffee;
}

.footer-copy {
  margin: 0;
  color: #999;
  font-size: 0.9rem;
}