:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
  color: #000;
}

body {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 28px 64px;
  background: #fff;
  color: #000;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.site-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.site-title img {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  object-fit: contain;
}

.site-title h1,
.site-title p {
  margin: 3px 0;
}

.site-links {
  margin: 0 0 40px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  font-weight: 700;
}

h2 {
  margin: 0 0 18px;
}

h3 {
  margin: 28px 0 10px;
}

p,
ul,
ol {
  margin: 12px 0;
}

ul,
ol {
  padding-left: 2em;
}

main > section + section {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid #aaa;
}

a,
a:visited {
  color: #000;
  text-decoration: underline;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid #000;
  outline-offset: 2px;
}

button {
  font: inherit;
  padding: 3px 9px;
}

code {
  font: inherit;
  overflow-wrap: anywhere;
}

.asset {
  margin: 24px 0;
}

.asset p,
.development-entry p {
  margin: 3px 0;
}

.asset button {
  margin-top: 6px;
}

.development-entry {
  margin: 20px 0;
}

footer {
  margin-top: 48px;
}

@media (max-width: 600px) {
  body {
    padding: 20px 16px 40px;
    font-size: 16px;
  }

  .site-title {
    gap: 14px;
    margin-bottom: 22px;
  }

  .site-title img {
    width: 72px;
    height: 72px;
  }

  .site-links {
    margin-bottom: 32px;
  }
}
