/*
div, header, main, footer, aside, nav {
  border: solid 1px blue !important; 
}
*/

* {
  box-sizing: border-box;
}

p, h1, h2, h3, h4, li {
  margin: 0px;
}

h1 {
  font-size: 32px;
  color: white;
  paint-order: stroke fill;
  -webkit-text-stroke: 2px #a87e6b;
  text-shadow: 2px 2px 0 #a87e6b;
}

h2 {
  font-size: 16px;
  color: #a87e6b;
}

@font-face {
  font-family: Unifont;
  src: url(assets/font/UnifontExMono.ttf);
}

@font-face {
  font-family: Pixellari;
  src: url(assets/font/Pixellari.ttf);
  font-weight: bold;
}

@font-face {
  font-family: superstar;
  src: url(assets/font/superstar_memesbruh03.ttf);
  font-weight: bold;
}

html, body {
  height: 99%;
  overflow: hidden;
}

a {
  color: #0011ff;
}

a:hover {
  color: rgb(118, 197, 0);
}

html {
  font-family: "ms ui gothic", Unifont;
  font-size: 16px;
  color: #774848;
  background: url(assets/bg/unsplash-xiexianghua-filter.png);
  background-size: cover;
  background-attachment: fixed;
  background-position-y: top;
}

h1, h2, h3, h4 {
  text-align: left;
  font-family: Pixellari;
}

p + h2 {
  margin-top: 15px;
}


.container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.border {
  height: 420px;
  width: 630px;
  border: 7px solid transparent;
  border-image: url(assets/border/lace-border.gif) 7 round;
}

.content {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 15px;
  padding: 5px;
  height: 100%;
  background: white;
}

nav {
  background: linear-gradient(#fff9f2, #fff2e4);
  box-shadow: inset 0 0 1px #a87e6b;
  border: dashed 1px #a87e6b;
  border-radius: 5px;
  padding: 10px;
  overflow-y: auto;
}

p + img {
  margin-top: 20px;
}

.entries {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
}

.date {
  font-family: superstar;
}

div.micro-entry + div.micro-entry {
  border-top: dashed 1px #a87e6b;
  padding-top: 5px;
}


.status-username a {
  font-family: Pixellari;
  text-decoration: underline wavy 1px;
  color: #a87e6b;
}