/* Always scroll smoothly */
* {
  scroll-behavior: smooth;
}
/* Compress sections */
section {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  margin-top: 0.5em !important;
  margin-bottom: 1em !important;
}
/* Show only a single line of the domain */
.domain {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  text-wrap: nowrap;
}
/* Add a counter in front of each post */
section {
  counter-increment: count 1;
}
section > strong::before {
  content: counter(count);
}
/* footer */
footer {
  text-align: left !important;
}
