/* ------------------------------------
 * MiniRetro - Pixel Retro Theme
 * Inspired by minimalist retro design
 * --------------------------------- */

/* ------------------
 * Base Reset
 * --------------- */
* {
  font-style: normal;
  font-weight: normal;
  font-size: 1em;
}

/* ------------------
 * Global Typography
 * --------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
  font-family: monospace, "Courier New", Consolas, Monaco;
}

h1,
#logo {
  font-size: xx-large;
  text-shadow: 0 0 20px white;
  font-weight: bold;
}

h2,
h3 {
  font-size: large;
}

h4,
h5,
h6 {
  font-size: medium;
}

/* ------------------
 * Body & Layout
 * --------------- */
body {
  font-family: monospace, "Courier New", Consolas, Monaco;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  color: lightgray;
  background-color: darkblue;
}

/* ------------------
 * Links
 * --------------- */
a:not(h1, h2) {
  color: aqua;
  text-decoration: none;
}

a:visited:not(h1, h2) {
  color: violet;
}

a:hover:not(h1, h2) {
  color: white;
}

a:active:not(h1, h2) {
  color: red;
}

/* Keep h1 and h2 links white in all states */
h1 a,
h1 a:link,
h1 a:visited,
h1 a:hover,
h1 a:active,
h2 a,
h2 a:link,
h2 a:visited,
h2 a:hover,
h2 a:active,
h2 a,
a#logo,
a#logo:link,
a#logo:visited,
a#logo:hover,
a#logo:active {
  color: white !important;
}

/* ------------------
 * Text Emphasis
 * --------------- */
b,
strong {
  color: yellow;
}

em {
  color: red;
}

i {
  color: gray;
}

/* ------------------
 * Header
 * --------------- */
.header,
#header {
  text-align: center;
  margin-bottom: 0px;
}

#logo img {
  max-height: 128px;
}

.description {
  margin: 0.5em 0;
  color: gray;
}

/* Navigation */
#nav-menu {
  margin: 25px 0 0;
  padding: 0;
  text-align: center;
}

#nav-menu a {
  display: inline-block;
  margin: 5px 5px;
  padding: 0px 0px;
  color: aqua;
}

#nav-menu a:hover,
#nav-menu .current {
  color: white;
}

/* Search */
.site-search {
  display: block !important;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

#search {
  display: inline-block;
  width: 100%;
  max-width: 500px;
}

#search input {
  padding: 5px;
  background-color: darkblue;
  border: 1px solid grey;
  color: lightgray;
  font-family: monospace;
  width: auto;
}

#search button {
  padding: 5px 10px;
  background-color: darkblue;
  border: 1px solid grey;
  color: aqua;
  font-family: monospace;
  cursor: pointer;
}

#search button:hover {
  color: white;
  border-color: white;
}

/* ------------------
 * Main Content
 * --------------- */
.article,
.post {
  text-align: left;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.post-title {
  margin: 0.83em 0;
}

.post-meta {
  margin-top: -0.5em;
  padding: 0;
  color: gray;
  font-size: 0.9em;
}

.post-meta li {
  display: inline;
  margin-right: 10px;
}

.post-content,
.comment-content {
  word-wrap: break-word;
  text-align: left;
}

.post-content img,
.comment-content img,
.post-content video,
.comment-content video {
  max-width: 100%;
}

/* Horizontal Rule */
hr {
  height: 2px;
  border: none;
  background-color: grey;
  margin: 2em 0;
}

/* Code Blocks */
pre,
code {
  background-color: black;
  color: lightgray;
  font-family: monospace;
  padding: 2px 5px;
}

pre {
  padding: 10px;
  overflow: auto;
  max-height: 400px;
}

pre code {
  background: transparent;
  padding: 0;
}

/* Blockquotes */
blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 3px solid grey;
  color: lightgray;
}

/* Tables */
table {
  border: 1px solid grey;
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 5px 10px;
  border: 1px solid grey;
  color: lightgray;
}

table th {
  background-color: black;
  color: white;
}

/* Form Elements */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
textarea {
  padding: 5px;
  border: 1px solid grey;
  background-color: darkblue;
  color: lightgray;
  width: 100%;
  font-family: monospace;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

input[type="submit"],
button[type="submit"] {
  padding: 5px 15px;
  background-color: darkblue;
  border: 1px solid grey;
  color: aqua;
  font-family: monospace;
  cursor: pointer;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  color: white;
  border-color: white;
}

/* ------------------
 * Page Navigation
 * --------------- */
.page-navigator {
  list-style: none;
  margin: 25px 0;
  padding: 0;
  text-align: center;
}

.page-navigator li {
  display: inline-block;
  margin: 0 5px;
}

.page-navigator a {
  display: inline-block;
  padding: 5px 10px;
}

.page-navigator .current a {
  color: white;
}

.more {
  text-align: center;
  margin: 20px 0;
}

/* ------------------
 * Comments
 * --------------- */
#comments {
  padding-top: 15px;
}

.comment-list,
.comment-list ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-list li {
  padding: 14px;
  margin-top: 10px;
  border: 1px solid grey;
}

.comment-meta a {
  color: gray;
  font-size: 0.9em;
}

.comment-author {
  display: block;
  margin-bottom: 5px;
  color: white;
}

.comment-author .avatar {
  float: left;
  margin-right: 10px;
  border: 1px solid grey;
}

.comment-author cite {
  font-weight: normal;
  color: yellow;
}

.comment-list .comment-reply {
  text-align: right;
  font-size: 0.9em;
  margin-top: 10px;
}

#comment-form label {
  display: block;
  margin-bottom: 0.5em;
  color: lightgray;
}

#comment-form .required:after {
  content: " *";
  color: red;
}

/* ------------------
 * Sidebar
 * --------------- */
#secondary {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 2px solid grey;
  word-wrap: break-word;
}

.widget {
  margin-bottom: 30px;
}

.widget-title {
  color: white;
  margin-bottom: 15px;
}

.widget-list {
  list-style: none;
  padding: 0;
}

.widget-list li {
  margin: 5px 0;
  line-height: 1;
  font-size: small;
}

.widget-list li ul {
  margin-left: 15px;
}

/* ------------------
 * Footer
 * --------------- */
.footer,
#footer {
  font-size: smaller;
  color: gray;
  text-align: center;
  padding: 3em 0;
  line-height: 1.5;
}

/* ------------------
 * Error Page
 * --------------- */
.error-page {
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

/* ------------------
 * Archive
 * --------------- */
.archive-title {
  margin: 1em 0;
  color: gray;
  font-size: 1em;
}

/* ------------------
 * Utility Classes
 * --------------- */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignleft {
  float: left;
}

.alignright {
  float: right;
}

img.alignleft {
  margin: 0 15px 0 0;
}

img.alignright {
  margin: 0 0 0 15px;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.sr-only {
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.invisible {
  visibility: hidden;
}

/* ------------------
 * Fraktur Settings
 * --------------- */
.fraktur {
  font-family: UnifrakturMaguntia, Georgia, "Times New Roman", "Noto Serif CJK JP", "Hiragino Mincho ProN", serif;
  font-size: 110%;
  text-align: justify;
}

.fraktur i,
.fraktur b,
.fraktur em {
  font-style: normal;
  letter-spacing: 0.3em;
}