/* Header customizations */
header h2, nav {
	margin-bottom: auto;
	padding-bottom: 10px;
}
nav a {
	font-weight: normal;
	text-decoration: none;
}

/* Remove underline from post titles */
.p-name {
	text-decoration: none;
}

/* Light mode configuration */
    body {
      background-color: #FEFFEE;
      color: #393E00;
    }
    h1, h2,  h3, h4, h5, h6, strong, b {
      color: #393E00;
    }
	.title:hover{
	  text-decoration: none;
	}
	hr {
	  border: .5px solid #393E00;
	}
	a {
	  color: #393E00;
      font-weight: bold;
	  text-decoration: underline;
    }
	a:hover {
	  opacity: 0.65;
	}
	a:has(time){
	  color: #74765E;
	  opacity: 1.5;
	  font-weight: normal;
	  text-decoration: none;
	}
	a:has(time):hover{
	  opacity: 0.85;
	  text-decoration: none;
	}
	code {
	  background-color: #EBEEC4;
	  border-radius: 5px;
	}
    pre code {
      color: #ddd;
    }
    blockquote {
	  opacity: .85;
	}
    textarea, input {
      background-color: #252525;
      color: #ddd;
    }
    .helptext {
      color: #EBEEC4;
    }
    .microblog_conversation {
      border-top: 1px dashed #ddd;
    }
    .microblog_time a {
      color:#ddd;
    }

/* Dark mode configuration */
@media (prefers-color-scheme: dark) {
    body {
      background-color: #111516;
      color: #ddd;
    }
    h1, h2,  h3, h4, h5, h6, strong, b {
      color: #eee;
    }
	hr {
	  border: .5px solid #ddd;
	}
	a {
      color: #8C9201;
    }
	a:hover {
	  opacity: 0.65;
	}
	a:has(time){
	  color: #9D9B81;
	  font-weight: normal;
	  text-decoration: none;
	}
	a:has(time):hover{
	  opacity: 0.85;
	  text-decoration: none;
	}
    code {
      background-color: #777;
    }
    pre code {
      color: #ddd;
    }
    blockquote {
	  opacity: 0.95;
    }
    textarea, input {
      background-color: #252525;
      color: #ddd;
    }
    .helptext {
      color: #aaa;
    }
    .microblog_conversation {
      border-top: 1px dashed #ddd;
    }
    .microblog_time a {
      color:#ddd;
    }
  }