.header {
  height: 75px;
  border-bottom: 1.5px solid black;
  margin-bottom: 30px;
}
.header h1 {
  margin-bottom: 0px;
}
@media (prefers-color-scheme: dark) {
  .header {
    border-bottom: 1.5px solid #ff69b4;
  }
}

h1, h2, h3, h4, h5 {
  margin: 0 auto;
  text-transform: lowercase;
}

h1 {
  font-variant: petite-caps;
  text-transform: lowercase;
  margin-bottom: 15px;
}

h2 {
  margin-top: 30px;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: ui-monospace, Monaco, Menlo, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 12px;
  line-height: 1.5;
}
@media (prefers-color-scheme: dark) {
  body {
    background: black;
    color: darkgrey;
  }
}

a {
  color: black;
  text-decoration-color: gray;
  text-underline-offset: 4px;
}
@media (prefers-color-scheme: dark) {
  a {
    color: darkgrey;
  }
}

blockquote {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid lightgray;
}

mark {
  background-color: #e7e7e7;
}

.pre-footer {
  display: flex;
  width: 100%;
}

.pre-footer a {
  width: 50%;
  font-variant: all-small-caps;
}

.pre-footer span {
  font-family: -apple-system, serif;
  font-size: 1.3em;
  line-height: 0.5;
}

footer {
  text-align: center;
  letter-spacing: 0.05em;
  font-variant: petite-caps;
}
footer span {
  font-family: -apple-system, serif;
  font-size: 1.3em;
  line-height: 0.7;
}

.wrapper {
  width: 100%;
  text-align: center;
}

.timestamp {
  padding-bottom: 30px;
}

.bulletin {
  width: 50%;
  margin: 0 auto;
  text-align: left;
  border: 1px black solid;
  padding: 30px;
}
@media screen and (max-width: 1100px) {
  .bulletin {
    width: 80%;
  }
}
@media (prefers-color-scheme: dark) {
  .bulletin {
    border: 1px darkgrey solid;
  }
}

div.photocontainer {
  text-align: center;
}
div.photocontainer img {
  border: 1px solid black;
}
@media screen and (max-width: 1100px) {
  div.photocontainer img {
    width: 90%;
  }
}
div.photocontainer video {
  border: 1px solid black;
  border-radius: 3px;
  width: 100%;
  max-width: 500px;
  padding: 2px;
}
@media screen and (max-width: 1100px) {
  div.photocontainer video {
    width: 90%;
  }
}

div.previousnextlinks {
  padding: 30px;
  font-variant: all-small-caps;
}
div.previousnextlinks a {
  margin: 75px;
}

.post-separator {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.post-separator hr {
  border: 0.5px solid grey;
}

.blink {
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/*# sourceMappingURL=main.css.map */