@import url('https://fonts.googleapis.com/css2?family=Fragment+Mono:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:ital,wght@0,100..900;1,100..900&family=Fragment+Mono:ital@0;1&display=swap');

body {
  background: #2d2d2d;
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  color: white;
  font-family: "Fragment Mono", monospace;
  /* align-items: center; */
}

#right-col, #left-col {
  padding-left: 10px;
}

#right-col {
  padding-right: 10px;
  width: 100%;
}

#left-col {
  width: 23%;
}

h1, h2, .siteName {
  margin: 0;
}

header {
  background-color: #515050;
  margin: 0px;
  padding: 10px 10px 0px 10px;
  font-size: 2.8em;
  font-weight: bold;
  font-family: "Azeret Mono", monospace;
}

#content {
  display: flex;
  flex-direction: row;
  justify-content: left;
  max-width: 1024px;
}

.bordered, section {
  border: solid 10px #515050;
}

section {
  margin: 10px 0px;
  padding: 10px;
}

section img {
  width: 100%;
}

a {
  color: white;
}

figcaption, figcaption a {
  color: #AAA;
}

.galery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: left;
  column-gap: 10px;
  row-gap: 5px;
}

.galery div figcaption {
  margin-bottom: 2px;
}

blockquote {
  margin: 16px 0px;
  padding: 5px 5px;
  color: #AAA;
  border-left: solid #AAA 5px;
}

blockquote p {
  margin: 0px;
}

#postDate {
  color: #AAA;
  font-style: italic;
}

code, pre {
  white-space: pre-wrap !important;
}