/* libre-franklin-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/libre-franklin-v20-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* libre-franklin-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Libre Franklin';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/libre-franklin-v20-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

*,
*::before,
*::after {
	box-sizing: border-box;
	background-repeat: no-repeat;
}
html,body {
	padding: 0;
	margin: 0;
}
html {
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	block-size: 100%;
}


body {
    font-family: 'Libre Franklin';
    font-weight: 500;
    color: #dedede;
    background: #000000;
    font-size: 20px;
}
a {
  color: #22c55e;
}

.announcement {
  background: #22c55e;
  color: #000;
  text-align: center;
  width:100%;
  padding:.8rem;
  font-size: 16px;
}

nav {
  height: 64px;
  border-bottom: solid 1px #3f3f46;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  width: 100%;
  left:0;
  top:0;
  background: #000000;
  font-size: 16px ;
}

nav a{
  text-decoration: none;
  color:inherit;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: -0.4pt;
  display: inline-block;
}

nav a {
  margin:0 1rem;
}

nav .nav-title {
    white-space: nowrap;
}

main {
    padding-top:64px
}

.article-list {
  max-width: 700px;
  margin:0 auto;
  line-height: 1.6;
  
}

.article-list ul {
  list-style-type: none;
}

.article-list ul li > a{
  text-decoration: inherit;
  color: inherit;
  display: block;
}

.article-list ul li {
  display: block;
  padding:1rem;
  margin:2rem 0;
  font-size: 16px;
}

.article-list ul li h2 {
  font-size: 20px;
}

.article-list ul li time {
	color: #aeaeae;
	font-size: 14px;
	display: block;
}

p {
  margin:1em 0;
}

article {
  max-width: 1200px;
  margin:0 auto;
  padding: 1rem;
  line-height: 1.6;
  display: grid;
  grid-template-columns:
    1fr
    min(700px, 100%)
    1fr;
}

article > * {
  grid-column: 2;
}

article > pre{
  width: 100%;
  grid-column: 1 / 4;
  overflow-x: auto ;
  font-size: 16px;
  border:solid 1px #3f3f46;
  padding:1rem;
}

article > figure{
  text-align: center;
  width: 100%;
  grid-column: 1 / 4;
}
article > figure img{
  max-width: 100%;
  max-height: 70vh;
}

article > time {
	color: #aeaeae;
	font-size: 14px;
	text-align: center;
	display: block;
}

h1 {
  text-align: center;
  font-size: 32px;
  letter-spacing: -1.2pt;
  margin-bottom:40px;
}

blockquote.mastodon-embed {
  width:100%;
  max-width: none!important;
  margin:1rem 0!important;
  border-radius:0!important;
  display: block;
}

footer {
  max-width: 700px;
  margin:0 auto;
}

footer .badges {
  text-align: center;
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges; 
  padding:4rem 0;
}
footer .badges a{
  display: inline-block;
  text-decoration: none;
  margin:0 .2rem;
}