/* IBMPlexSans: total 6 */
@font-face {
  font-family: "IBMPlexSans";
  src: url("../ttf/IBMPlexSans-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSans";
  src: url("../ttf/IBMPlexSans-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "IBMPlexSans";
  src: url("../ttf/IBMPlexSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSans";
  src: url("../ttf/IBMPlexSans-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "IBMPlexSans";
  src: url("../ttf/IBMPlexSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSans";
  src: url("../ttf/IBMPlexSans-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
/* /IBMPlexSans */
/* IBMPlexSerif: total 12 */
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-Thin.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-ThinItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-SemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "IBMPlexSerif";
  src: url("../ttf/IBMPlexSerif-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
/* /IBMPlexSerif */
html {
  font-size: 16px;
}
body {
  font-family: IBMPlexSans;
  background: #eee;
}
body > .content {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 1rem);
  padding: 0.5rem;
}
h1, h2 {
  font-weight: normal;
  color: #444;
}
p {
  line-height: 1.5;
}
a {
  padding: 1px 2px;
  text-decoration: none;
  color: #444;
  font-weight: 700;
  box-shadow: inset 1px 1px 0 #444, inset -1px -1px 0 #444;
}
a:hover {
  color: #111;
}
input, textarea {
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
}
input[type="text"], input[type="password"], textarea {
  display: block;
  padding: 0.25rem 0.5rem;
  font-family: IBMPlexSans;
  border: none;
  color: #fff;
  background: rgba(17, 17, 17, 0.6);
  box-shadow: inset 1px 1px 0 #444, inset -1px -1px 0 #444;
  transition: background 125ms ease;
  border-radius: 0.25rem;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  outline: none;
  background: rgba(17, 17, 17, 0.7);
}
input[type="text"].bold, input[type="password"].bold, textarea.bold {
  font-weight: bold;
}
main, header, footer {
  max-width: 1600px;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  gap: 0.5rem;
  border-radius: 0.25rem 0.25rem 0 0;
  box-shadow: inset 0 1px 0 #444, inset -1px 0 0 #444, inset 1px 0 0 #444;
  border-bottom: 1px dashed #444;
}
header a.title {
  display: inline-block;
}
header > section {
  padding: 0 1rem;
}
header > section:first-child {
  margin-right: auto;
  width: min-content;
}
header > section:last-child {
  margin-left: auto;
  margin-right: auto;
}
header .content {
  flex: 1 1 0;
  min-width: 0;
}
main {
  width: 100%;
  padding: 0.25rem 0;
  margin: 0 auto;
  display: flex;
  flex: 1;
  justify-content: center;
  box-shadow: inset -1px 0 0 #444, inset 1px 0 0 #444;
}
main > .content {
  width: 100%;
  max-width: 1080px;
  min-height: 100%;
  box-shadow: inset 1px 1px #444, inset -1px -1px #444;
}
main > .content > .center {
  display: flex;
  height: 100%;
}
main > .content > .center.vertical {
  align-items: center;
}
main > .content > .center.horizontal {
  justify-content: center;
}
footer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 0 calc(.25rem + 1px);
  box-shadow: inset 0 -1px 0 #444, inset -1px 0 0 #444, inset 1px 0 0 #444;
  color: #eee;
  border-radius: 0 0 0.25rem 0.25rem;
}
footer > .content {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 0.25rem;
  padding: 1rem 1rem;
  width: 100%;
  max-width: 1080px;
  background: rgba(238, 238, 238, 0.2);
  box-shadow: inset 0 1px 0 #444, inset 0 -1px 0 #444, inset -1px 0 0 #444, inset 1px 0 0 #444;
}
footer > .content a {
  display: inline-block;
}
footer > .content ul.links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
form {
  display: grid;
  grid-template-columns: min-content 1fr;
  gap: 1rem;
  align-items: center;
}
form.wide {
  width: calc(100% - 1rem);
  grid-template-columns: 1fr;
}
form.wide label {
  display: block;
}
form.wide input[type="text"], form.wide textarea {
  width: calc(100% - 1rem);
}
form.wide input[type="text"].short, form.wide textarea.short {
  width: 0;
  min-width: 16em;
}
form.wide ul.notes {
  grid-column: unset;
}
form label {
  display: block;
}
form textarea.long {
  width: clamp(0, 500px, 720px);
  height: clamp(25vh, 33vh, 50vh);
}
form input[type="submit"] {
  width: fit-content;
}
form ul.notes {
  grid-column: span 2;
  margin: 0;
  padding: 0;
  font-style: italic;
  list-style: none;
}
form ul.links {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
form .container.buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
table th, table td {
  padding: 2px;
}
table th {
  text-align: left;
  font-weight: normal;
  font-style: italic;
}
table a {
  display: inline-block;
  box-shadow: none;
}
table tr:nth-of-type(odd) td {
  background: rgba(17, 17, 17, 0.05);
}
.quote {
  display: block;
  color: inherit;
}
.quote h1, .quote h2 {
  font-family: IBMPlexSerif;
}
.quote h1 {
  font-style: italic;
  font-weight: 600;
}
.quote h2 {
  font-size: 100%;
}
.quote.big {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1px 2px;
}
.quote.big > * {
  margin: 0;
}
.quote.big:hover > * {
  color: #111;
}
.quote.big .by {
  text-align: right;
}
.quote.big .line {
  text-align: left;
  font-weight: 300;
  font-style: italic;
}
.quote.big span.char {
  opacity: 0.8;
}
.container.posts {
  padding: 2rem;
  display: grid;
  grid-gap: 2rem;
}
.container.body {
  display: flex;
  justify-content: center;
}
.container.body > .content {
  padding: 2rem 0 0;
  width: 100%;
}
.container.body > .content p:first-of-type {
  margin-top: 0;
}
.container.buttons h2, .container.buttons p {
  margin: 0;
}
.container.buttons p.info {
  font-style: italic;
}
@media (min-width: 720px) {
  .container.body > .content {
    width: calc(100% - 8rem);
  }
  form.wide {
    width: calc(100% - 4rem);
  }
}
.post .title {
  margin: 0;
  line-height: 1.45;
}
.post .date {
  display: inline-block;
  padding: 2px 1px 0;
}
