@font-face {
    font-family: "braille-06";
    src: url("/assets/fonts/braille-06-dot.eot");
    src: url("/assets/fonts/braille-06-dot.eot?#iefix")
        format("embedded-opentype"),
      url("/assets/fonts/braille-06-dot.woff") format("woff"),
      url("/assets/fonts/braille-06-dot.woff2") format("woff2"),
      url("/assets/fonts/braille-06-dot.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

  @font-face {
    font-family: "braille-08";
    src: url("/assets/fonts/braille-08-dot.eot");
    src: url("/assets/fonts/braille-08-dot.eot?#iefix")
        format("embedded-opentype"),
      url("/assets/fonts/braille-08-dot.woff") format("woff"),
      url("/assets/fonts/braille-08-dot.woff2") format("woff2"),
      url("/assets/fonts/braille-08-dot.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html {
    font-family: Terminal Dosis;
}

body {
    height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    line-height: 1.5em !important;
    color: #fff;
    background-color: #000;
    overflow-x: hidden;
}

/* container */

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    max-width: 50rem;
    width: 90%;
    margin: 0 auto;
}

/* header */

header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: dotted 0.125rem #fff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.header h1 {
  all: unset;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 0;
  list-style-type: none;
}

.header h1 > a {
    font-weight: normal;
    font-style: none;
    text-decoration: none;
}

.header > h1 > a:hover {
    text-decoration: underline;
    text-underline-offset: .25rem;
}

/* navigation */

.nav {
  font-size: 1rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-left: 0;
  list-style: none;
}

.nav li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-left: .5rem;
}

.nav li:first-child {
	margin-left: 0;
}

.nav a {
    font-weight: normal;
    font-style: none;
    text-decoration: none;
}

.nav a:hover {
    text-decoration: underline;
    text-underline-offset: .25rem;
}

/* main */

main {
    flex-grow: 1;
}

/* footer */

.footer {
    margin-top: auto;
	color: #fff;
	border-top: dotted 0.125rem #fff;
    padding-top: .5rem;
	padding-bottom: .5rem;
	text-align: left;

}

.footer {
  font-size: 1rem;
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding-left: 0;
  list-style: none;
}

.footer li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-left: .5rem;
}

.footer li:first-child {
	margin-left: 0;
}

.footer a {
    font-weight: normal;
    font-style: none;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    text-underline-offset: .25rem;
}

/* page title */

.title {
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 2rem;
    padding-left: 0;
    list-style-type: none;
}

/* headings */

h2 {
	font-size: 1.25rem;
    font-weight: normal;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

h3 {
	font-size: 1.125rem;
    font-weight: normal;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

h4 {
	font-size: 1rem;
    font-weight: normal;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* paragraph */

p {
    position: relative;
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1rem;
	color: #fff;
}

p {
	 word-wrap: break-word;
	 word-break: break-word;
	 white-space: pre-wrap;
	 margin-bottom: 1rem;
}

/* selection */

::selection {
    background: #fff;
	color: #000;
}

::-moz-selection {
	background: #fff;
	color: #000;
}

/* blockquote */

blockquote {
	padding: 0 0 0 1rem;
    margin: 1rem;
    color: #fff;
    border-left: 0.25rem solid #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-style: italic;
    text-align: justify;
}

blockquote p:last-child {
	margin-bottom: 0;
}

/* links */

a {
    text-decoration: underline;
    text-underline-offset: .25rem;
    color: #fff;
}

a:visited {
    color: #fff;
}

/* fonts */

strong {
	font-weight: bold;
    color: #fff;
}

abbr {
    text-decoration: none;
    border-bottom: 0.0625rem #fff;
    font-family: "SFMono-Regular", Menlo, Monaco, "Courier New", monospace;
    font-size: 1rem;
    font-weight: bold;
}

kbd {
    display: inline-block;
    padding: 0.1875rem;
    font-family: "SFMono-Regular", Menlo, Monaco, "Courier New", monospace;
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    background-color: #fff;
    border-radius: 0.1875rem;
}

/* braille */

.brl-06 {
    font-family: "braille-06";
    color: #fff;
    font-size: 1rem;
    padding: 0;
}
    
.brl-08 {
    font-family: "braille-08";
    color: #fff;
    font-size: 1rem;
    padding: 0;
}
    
.brl-06-center {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "braille-06";
    font-size: 2rem;
    padding: 0;
}

.brl-08-center {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "braille-08";
    font-size: 2rem;
    padding: 0;
}
    
.brl-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
    
.pre-brl {
    vertical-align: middle;
}

.brl-06-pre {
    font-family: "braille-06";
    color: #000;
    font-size: 2rem;
    vertical-align: middle;
    padding: 0;
}
    
.brl-08-pre {
    font-family: "braille-08";
    color: #000;
    font-size: 2rem;
    vertical-align: middle;
    padding: 0;
}

/* no spam */

span.blockspam {
    display: none;
}

/* archive */

.archive {
    margin-bottom: 3rem;
}

.archive-item {
    margin-bottom: 1rem;
    overflow: auto;
}

.archive-item+.archive-year {
    margin-top: 2rem;
}

.archive-year {
    font-size: 1.25rem;
    font-weight: normal;
}

.archive-title {
    font-size: 1rem;
    margin: 0;
}

.archive-date {
    flex: none;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1rem;
}

.spacer {
    width: 1rem;
}

@media (min-width: 28rem) {
    .archive-item {
        margin-bottom: .5rem;
   }
}

.archive-none {
    display: none;
}

.gap {
    gap: .25rem;
}

.flex-none {
    flex: none;
}

@media (min-width: 28rem) {
    .archive-flex {
        display: flex;
   }
    .archive-block {
        display: block;
   }
}

/* article */

article {
    margin:0 auto;
    max-width:45rem;
}

article {
    display:block!important;
    margin:0 auto!important;
    max-width:90%
}

@media(max-width:40rem) {
    article {
        max-width:calc(100% - 2rem)
    }
}

.post-title {
    font-size: 1.5rem;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
}

.post-date {
    font-size: .8rem;
    font-weight: lighter;
    margin-top: 0;
	margin-bottom: 2rem;
	color: #fff;
}

/* tables */
  
table {
    table-layout: fixed;
    width: 100%;
    font-size: 12pt;
    text-align: left;
    color: #fff;
    border-collapse: collapse;
    border: 0.0625rem solid #fff;
}
  
table tr:nth-child(even) {
    background-color: #000;
}
  
table th, table td {
    padding: 0.625rem 0.9375rem;
}
  
table th {
    background-color: #fff;
    color: #000;
    border: 0.0625rem solid #fff;
}
  
table td {
    border: 0.0625rem solid #fff;
}
  
@media screen and (max-width: 37.5rem) {
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
  }
  
.column-01 {
    width: 45%;
}
  
.column-02 {
    width: 15%;
}
  
.column-03 {
    width: 25%;
}
  
.column-04 {
    width: 25%;
}
  
/* code */
  
pre, code {
    font-family: "SFMono-Regular", Menlo, Monaco, "Courier New", monospace;
    color: #000;
    border: 0.0625rem solid #fff;
    background-color: #fff;
}
   
code {
    padding: 0.0628rem 0.3125rem;
}
   
pre {
    padding: 1rem;
    overflow-x: auto;
    }
  
pre > code {
    border: 0;
    padding: 0;
}
   
.highlight {
    background: #000;
}
  
.highlighter-rouge .highlight {
    background: #000;
}

/* wiki */

.wiki-list {
    list-style-type: none;
    margin: 0; padding: 0;
}

.wiki-list li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* description list */

dt {
	font-size: .9rem;
}

dd {
	margin-left: 0;
}

.index aside dd:not(:last-child) {
	margin-bottom: .5rem
}

dl {
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: .2rem 1rem;
    margin: 1rem;
}

dl dt {
	font-weight: bold;
	grid-column-start: 1;
}

dl dd {
	grid-column-start: 2;
	margin: 0;
}

/* lists */

ul {

    list-style-type: "*";
}

ul li {
    margin-left: -0.7rem;
    padding-left: .5rem;
}

ol li {
    margin-left: -0.2rem;
}