@charset "UTF-8";
/* CSS Document */

html {
  background-color: #121212;
}

body {
	font-family: 'IBM Plex Mono', monospace;
}

p {
	font-family: 'IBM Plex Mono', monospace;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
a {
	color: lightgrey;
}

a:hover {
	color: #0035FF;
	text-decoration: underline;
}

a:visited {
	color: grey;
}

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #ffffff;
	font-family: 'IBM Plex Mono', monospace;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'IBM Plex Mono', monospace;
}

.title {
	color: white;
}
.subtitle {
	color: white;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: 'IBM Plex Mono', monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: 'IBM Plex Mono', monospace;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #121212;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 1em;
}

ul {
	list-style: disc;
	font-family: 'IBM Plex Mono', monospace;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

.container.is-fluid {
	padding-left: 0 !important;
	padding-right: 0 !important;

}

.section {
	padding: 1.5rem 1.5rem !important;
}

.tags-links a:visited {
	color: grey;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

.navbar-burger {
color: #fff;
}
.navbar-burger:hover {
background-color: rgba(0, 0, 0, 0.25);
}
/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.archive .page-header, .search .page-header, .error404 .page-header {
    margin:1rem 0;
}

.entry-meta {
	margin:1rem 0;
}

.hentry:first-of-type {
margin-top: 0;
}

.hentry {
	margin-top: calc(6 * 1rem);
}

.hentry .entry-footer {
    margin:calc(2 * 1rem) 0;
}

.hentry .entry-meta > span, .hentry .entry-footer > span {
    margin-right: 1rem;
}

.post-navigation .nav-links a .meta-nav {
    color: #767676;
    user-select:none
}

.post-navigation .nav-previous:before,  .post-navigation .nav-next:before {
    display: none;
    content: "—";
    width: 2em;
    color: #767676;
    height:1em;
}

.post-navigation .nav-links a .post-title {
    hyphens:auto
}

.post-navigation .nav-links a:hover {
    color: #0035FF;
}
.comments-area .comments-title-wrap .comments-title:before {
background: #767676;
content: "\020";
display: block;
height: 2px;
margin: 1rem 0;
width: 1em;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer {
	background-color: #232323;
	color: white;
}

.footer strong {
  color: white;
}
.footer a {
  color: #FFFFFF;
}
.footer a:hover {
  color: #0035FF;
}


/*--------------------------------------------------------------
## Selection
--------------------------------------------------------------*/
::-moz-selection{
	background:#0035FF;
	color:#000000;
}

::selection {
	background:#0035FF;
	color:#000000;
}

code::-moz-selection {
	background: #0035FF;
}

code::selection {
	background: #0035FF;
}

