@font-face {
  font-family: 'EnterCommand';
  src: url('fonts/enter_command/EnterCommand.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'AzeretMono';
  src: url('fonts/azeret_mono/static/AzeretMono-Regular.ttf') format('truetype');
  font-weight: normal;
}

 :root {
  --subtitle: #586E75;
  --green: #859900;
  --ochre: #B58900;
  --blue: #2AA198;

  --bg: #00141A;
  --bg-secondary: rgba(42,161,152,0.03);
}


.page-content {
    background-color: var(--bg)
}

.main-content {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 2em;
}



.post-list {
    margin-top: 1.5em;
}

.post-entry {
    display: flex;
    gap: 1em;
    margin-bottom: 0.4em;
}

.post-entry time {
    color: var(--subtitle)
}



.tag {
    font-size: 0.8em;
    padding: 0.1em 0.2em;
    white-space: nowrap;
    border-radius: 2px;
}

.post-title-line {
    display: flex;
    align-items: baseline;
    gap: 0.6em;
    flex-wrap: wrap;
}


.post-meta {
    display: flex;
    align-items: baseline;
    gap: 0.8em;
    margin-bottom: 1em;
}


.tag-tech {
    color: #2AA198;
    background: rgba(42,  161, 152, 0.12);
}



body {
    font-size: 0.95em;
    background-image:
        linear-gradient(var(--bg-secondary) 1px, transparent 1px),
        linear-gradient(90deg, var(--bg-secondary) 1px, transparent 1px);
    background-size: 72px 72px;


    color: #ebeded;
    font-family: 'AzeretMono', monospace;
}

.subtitle {
    color: var(--subtitle)
}

p {
    line-height: 1.5em; 
}

h1 {
    font-size: 4em;
    font-family: 'EnterCommand', monospace;
    margin-top: 0px;
    margin-bottom: 0px;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--ochre);
    text-decoration: underline;
}