:root {
  color-scheme: light dark;
  font-family: 'Fira Sans', sans-serif;
  line-height: 1.6;
  color: #202124;
  background: #fbfbf7;
}

@font-face
{
    font-family: 'Fira Sans';
    src: url(fonts/FiraSans-Regular.woff);
}

body {
  margin: 0 auto;
}

.wrapper {
  max-width: 760px;
  padding: 32px 20px 56px;
  margin-left: auto;
  margin-right: auto;
}

a {
  color: #005f73;
}

.site-header {
  background-color: #2459FF;
  color: white;
  font-size: 1.6em;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 56px;
  padding: 20px;
}

.site-header a,
.site-header a:visited
{
    color: white;
}

.site-title {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.about
{
    margin-top: 80px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.topper
{
    height: 20px;
    background-color: #2459FF;
}

h1,
h2 {
  line-height: 1.2;
}


p
{
    font-size: 13pt;
}

p:has(img) { padding:0;margin-top: 3em; margin-bottom: 3em; max-width: 100%; }

p:has(iframe) { padding:0;margin-top: 3em; margin-bottom: 3em; max-width: 100%; }

img,iframe {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

time {
  color: #686868;
  display: block;
  margin-bottom: 18px;
}

.post-index {
  list-style: none;
  margin: 0;
  padding: 0;
}

.post-index li {
  border-bottom: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  font-size: 1.12rem;
  padding: 12px 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.pagination [aria-current="page"] {
  font-weight: 700;
}

.pagination-ellipsis {
  color: #686868;
}

@media (prefers-color-scheme: dark) {
  :root {
    color: #e9e5d8;
    background: #171717;
  }

  a {
    color: #8ecae6;
  }

  time {
    color: #aaa394;
  }
}
