:root {
  --site-width: 36rem;
  --text-color: #333;
  --faded-color: #555;
  --background-color: #9dc8d6;
  --color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #DDD;
        --faded-color: #999;
        --background-color: midnightblue;
    }
}

body {
  margin: 1rem 1rem 1rem 1rem;
  max-width: var(--site-width);
  color: var(--text-color);
  background-color: var(--background-color);
  font-family: "Lora", serif;
  text-rendering: optimizeLegibility;
  line-height: 1.45;
  font-size: 18px;
}

@media (min-width: 500px) {
  body {
    /* bigger margin for larger screens */
    margin: 4rem auto 4rem auto;
  }
}

h1, h2, h3, h4, h5, h6 {
  text-color: var(--text-color);
  font-family: "Jost", sans serif;
}

h1 {
  /*font-size: 3rem;*/
  line-height: 3.6rem;
}

h1.home {
  /*font-size: 4rem;*/
  padding-bottom: 0;
  margin-bottom: 0.2rem;
}

div.home-subtitle {
  font-size: 0.8rem;
  font-style: italic;
}

a {
  color: var(--text-color);
}

.post-list-date {
  margin-left: 1rem;
  font-size: 75%;
  color: var(--faded-color);
 }


img {
  max-width: 100%;
}

a.direct-link {
  display:none;
}

a.dt-published {
  font-size: 1rem;
  color: var(--faded-color);
  text-decoration: none;
}

blockquote {
  font-size: 18px;
  line-height: 1.3;
  color: var(--faded-color);
}

footer {
  margin-top: 4rem;
}

.h-card {
  display: flex;
 }

.h-card > .avatar-container {
  max-width: 14rem;
  margin-right: 2rem;
  height: auto;
}

.h-card > .avatar-container > img {
  width: 100%;
}

.self-promotion{
  margin-top: 5rem;
}

td {
  padding-left: 1rem;
}
