*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

.visually-hidden {
  border: none;
  clip: rect( 1px, 1px, 1px, 1px );
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (min-width: 55em) {
  .image-right-small {
    float: right;
    max-width: 30%;
    margin-left: 1em;
    margin-bottom: 1em;
  }
}

html {
  background: #f5f5f5;
  scroll-behavior: smooth;
}

body {
  font-family: "Yoga", sans-serif;
  line-height: 1.5;
  color: #555;
  font-size: 110%;
  background: #fbfbfb;
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  font-kerning: normal;
  -webkit-font-feature-settings: kern 1,liga 1,calt 1;
  -moz-font-feature-settings: kern=1,liga=1,calt=1;
  -moz-font-feature-settings: kern 1,liga 1,calt 1;
  font-feature-settings: kern 1,liga 1,calt 1;
}

@media ( min-width: 70em ) {
  body {
    font-size: 120%;
  }
}

@media ( min-width: 90em ) {
  body {
    font-size: 130%;
  }
}

h2, h3, h4, h5, h6 {
  color: #222;
}

/* -------------------------------
   Grid
   ------------------------------- */

body,
.page {
  padding: 0 1em;
  max-width: 40em;
  margin: 0 auto;
}

@supports ( display: grid ) {
  body {
      max-width: none;    
  }
  @media ( min-width: 55em ) {
    body {
      padding: 0;
      display: grid;
      margin: 0;
    }
  }
}

@media ( min-width: 55em ) {
  body {
    grid-template-columns: 5em 10em [main-content-start] 50ch [main-content-end] auto;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }
}

@media ( min-width: 60em ) {
  body {
    grid-template-columns: 5em 10em [main-content-start] minmax(55ch, 65ch) [main-content-end] auto;
  }
}

@media ( min-width: 70em ) {
  body {
    grid-column-gap: 4em;
  }
}

.page-logo {
  grid-column: 2 / 3;
}

.page-title,
.intro,
.home-intro-text,
.how,
.blog,
.main-content,
.post-meta,
.blog-meta,
.entry-content,
.author,
.paging,
.hfeed,
.about-me-what,
.page-opener,
.about-me-where,
.contact-info,
body > p /* amongst others, feedback from the comment form */ {
  grid-column-start: main-content-start;
  grid-column-end: main-content-end;
}

.recent-work,
.footer {
  grid-column-start: 1;
  grid-column-end: end;
  max-width: 100vw;
}

.comment-form,
.comments,
.comment-form + p /* success message */ {
  grid-column-start: 2;
  grid-column-end: main-content-end;
}

.post-meta,
.blog-meta,
.rss-feed,
.contact-company-info,
.contact-company-details {
  grid-column-start: main-content-start;
  grid-column-end: main-content-end;
}

.blog-meta ul {
  margin-top: 0;
}
.blog-meta li {
  list-style-type: "▸ ";
  list-style-position: inside;
}
.blog-meta li:last-child {
  margin-top: 1em;
}

.service,
.spicy-services {
  grid-column-start: 2;
  grid-column-end:  4;
}
.spicy-services {
  margin-top:  1em;
  display: block;
}
.spicy-services[affordance="vertical-tabs"] {
  display: flex;
  flex-direction: row;
  gap: 4em;
}
.spicy-services[affordance="vertical-tabs"] h2 {
  font-size:  1em;
  border-top: 0;
  padding-top:  0;
  font-weight:  bold;
  padding:  0.25em;
  border-radius: 0.25em;
  cursor: pointer;
}
.spicy-services[affordance="vertical-tabs"] h2:not([aria-expanded="true"]):hover {
  background-color: #eee;
}
@media (prefers-color-scheme: dark) {
.spicy-services[affordance="vertical-tabs"] h2:not([aria-expanded="true"]):hover {
  background-color: #414141;
}
}
.spicy-services[affordance="vertical-tabs"] h2:focus {
  outline-offset:  -2px;
}
.spicy-services[affordance="vertical-tabs"] > div {
  border: 1px solid rgb(204, 204, 204);
  padding: 1em 2em;
  border-radius: 1em;
}
.spicy-services[affordance="vertical-tabs"] h2[aria-expanded="true"] + div {
  display: flow-root !important;
}
@media (min-width:  70em) {
  .spicy-services[affordance="vertical-tabs"] > div .examples {
    margin-right:  -10em;
  }
}
tab-bar ::slotted([tabindex="0"]):focus-visible {
  outline-color: transparent;
}

h2[role="button"],
h3[role="button"] {
  cursor: pointer;
}

.spicy-services-examples {
  --const-mq-affordances:
  [screen and (max-width: 50em) ] collapse;
}
  .spicy-services-examples h3 {
    margin-top:  0;
  }

.main-nav {
  grid-column-start: main-content-start;
  grid-column-end: end;
}

@media ( min-width: 55em ) { 
  .post-meta,
  .blog-meta,
  .rss-feed {
    grid-column-start: 2;
    grid-column-end: main-content-start;
  }  
}

@media ( min-width: 60em ) { 
  .about-me-where,
  .contact-info {
    grid-column-start: 2;
    grid-column-end: main-content-start;
  }
  .archive-nav {
    grid-column-start: 2;
    grid-column-end: main-content-start;
    grid-row-start: 3;
  }
}


/* -------------------------------
   Typography
   ------------------------------- */

body.page-home {
  background-color: aliceblue;
}

p,
ul,
ol,
blockquote {
  margin: 1em 0;
}

h1 {
  font-size: 2em;
  line-height: 1.1;
  font-weight: 100;
}

@media ( min-width: 40em ) { 
  h1.page-title {
    font-size: 2.5em;
  }
}

@media ( min-width: 55em ) { 
  h1.page-title {
    font-size: 3em;
    grid-column-end: 5;
  }
}

.page-title-home {
  color: #483d8b;
  font-weight: bold;
}

h1.page-title-home em {
  font-style: normal;
  color: black;
}

@media( min-width: 60em ) {
  h1.page-title {
    font-size: 3.7em;
    grid-column-end: 5;
  }
  h1.page-title-home {
    font-size: 3em;
  }
}

@media ( min-width: 70em ) {
  h1.page-title-home {
    font-size: 3.5em;
    line-height: 0.9;
    margin-left: -4em;
    margin-top: 2em;
  }
}

h1 + p {
  margin: 1em 0 0 0;
  font-size: 1.25em;
}

h1 + .post-meta {
  font-size: 1em;
  font-size: .85em;
  grid-row-start: 2;
  grid-column: 3 / 4;
  margin-top: 3em;
}
h1 + .post-meta .dt-published {
  font-variant-numeric: lining-nums;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
h1 + .post-meta p {
  padding-right: 1em;
}
h1 + .post-meta a {
  color: inherit;
}

h2 {
  margin: 1.5em 0 0;
  line-height: 1.2;
  font-size: 1.3em;
  font-weight: 100;
}

@media (min-width: 55em) {
  h2 {
    font-size: 1.5em;
  }
  h2:first-child {
    margin-top: 0;
  }
}

h3 {
  font-size: 1em;
  margin: 1em 0 0;
}

@media ( min-width:55em ) {
  h3:first-child {
    margin-top: 0;
  }  
}

h3 + p,
h3 + ul,
h3 + ol {
  margin-top: 0;
}

ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

a {
  transition: color .25s;
}

p a,
li a,
.comment a,
dd a {
  color: crimson;
}

p a:hover,
li a:hover,
.comment a:hover {
  color: #000;
}

p code,
li code,
blockquote code {
  border: 1px solid currentColor;
  padding: 0 .125em;
}

.home-intro-text span {
  position: absolute;
  left: -9999em;
}
.home-intro-text a {
  background: #eee;
  color: #333;
  padding: 1em;
  display: block; 
  margin-bottom: 1px;
  text-decoration: none;
}

@media ( min-width: 55em ) {
  .home-intro-text span {
    position: static;
  }
  .home-intro-text a {
    text-transform: lowercase;
    background-color: transparent;
    padding: 0;
    display: inline;
    margin-bottom: 0;
    color: crimson;
    text-decoration: underline;
  }
}

.page-title {
  margin-top: .75em;
  margin-bottom: .5em;
  letter-spacing: -0.03em;
}

h1.post-title {
  font-weight: bold;
  margin: 0;
  font-size: 2em;
  color: crimson;
  letter-spacing: -0.01em;
  grid-column: 3 / 6;
  max-width: 16em;
}

@media (min-width: 55em) {
  h1.post-title {
    font-size: 3em;
    margin-left: -1.5em;
  }
}

@media (min-width: 55em) {
  h1.post-title {
    margin-left: -1.4em;
  }
}

.page-title a {
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

dt {
  font-weight: 700;
}

dt:first-child {
  margin-left: 0;
}

dd {
  margin-bottom: .5em;
}
.entry-content dd {
  margin-left: 1.5em;
}

blockquote {
  margin: 0;
  font-style: italic;
  padding: 0 0 0 2em;
  border-top: 0;
  border-bottom: 0;
}

blockquote p {
  margin: 0;
}

pre {
  line-height: 2;
  font-size: 14px;
}

img,
iframe,
audio,
video {
  max-width: 100%;
  height: auto;
}

a img {
  border: 0;
}

sup {
  line-height: 1;
}

p:empty /* because Markdown adds them sometimes :'( */ {
  display: none;
}

pre > p,
code > p {
  display: none;
}

pre pre {
  margin: 0;
  padding: 0;
}

li {
  margin-left: 1.25em;
}

@media ( min-width: 55em ) {
  li {
    margin-left: 0;
  }
}

:focus {
  outline: 2px solid black;
  outline-offset: 3px;
  outline-radius: 2px;
  transition: outline 0.1s ease-out;
}


/* -------------------------------
   Page parts
   ------------------------------- */

.page-logo {
  background-color: crimson;
  display: block;
  padding: 0.25em 1em;
  margin: 0 0 0 -1em;
  max-width: 11em;
  display: flex;
  height: 2em;
  font-size: 1em; /* helpful if it is a <h1> */
  color: white;
  transition: background-color 0.2s ease-in;
}
  .page-logo img {
    margin: 0 auto;
    display: block;
    max-width: 90%;
    transition: all 0.2s ease-in;
  }
a.page-logo:hover, a.page-logo:hover img {
  background-color: midnightblue;
}

@media ( min-width: 55em ) {
  .page-logo {
    max-width: none;
    margin: 0;
    height: 100%;
    padding: .25em;
  }
}

.recent-work {
  padding-top: 2em;
  background: lavender;
  overflow: hidden;
  text-align: center;
  margin: 0 -1em;
}

.recent-work h2 {
  font-weight: bold;
  margin-top: 0; 
}

.recent-work article {
  background: #fff;
  margin: .5em .5em -1em .5em;
  padding: 2em 2em 2em 7.5em;
  position: relative;
  text-align: left;
  border-radius: 0 1em 0 1em;
  box-shadow: 4px 4px 0px 0px #800791;
  border-radius: .25em .5em;
}
.recent-work figure {
    position: absolute;
    top: 2em;
    left: 1.5em;
}

.recent-work figure img {
    width: 5em;
}

.recent-work article aside li {
    list-style: none;
}

.recent-work p {
    margin: 0 0 1em;
}

@media ( min-width: 55em ) {
  @supports ( display: grid ) {    
    .recent-work {
      padding-bottom: 2em;
      gap: 1em;
      font-size: 90%;
      display: grid;
      grid-template-rows: masonry;
      grid-template-columns: repeat(auto-fill, 20em);
      align-items: start;
      justify-content: center;
    }
    .recent-work article {
      margin-bottom: .5em;
    }
    .recent-work h2 { 
      grid-column: 1 / -1;
    }
  }
}

@media ( min-width: 70em ) {
  @supports ( display: grid ) {    
    .recent-work img {
      width: 4.7em;
    }
  }
}

.entry-content {
  padding: 1em 0 1em;
  margin: 1em 0 1em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.entry-content-post > p:first-child {
  font-size: 1.25em;
  margin-top: 0;
}

.entry-content-post > p:last-of-type::after {
  content: '';
  width: .75em;
  height: .75em;
  background-color: #ccc;
  display: inline-block;
  margin-left: .5em;
  vertical-align: middle;
  margin-top: -.25em;
  border-radius: 100%;
} 

.entry-content-credits {
  font-style: italic;
}
.entry-content-credits > :last-child {
  margin: 0;
}

@supports( display: grid ) {
  @media ( min-width: 55em ) {
    .entry-content {
      border-top: 0;
      border-left: 1px solid #ccc;
      padding: 0 2em 2em;
      margin: 0 -2em;    
    }
  }
}

.entry-content p > img {
  margin: 0 -1em;
  max-width: calc(100% + 2em);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.entry-content p > img + em {
  color: #777;
  display: block;
}

@media ( min-width: 55em ) {
  .entry-content p > img {
    margin: 0;
    max-width: 100%;
    border-top: 0;
    border-bottom: 0;
  }
}

.comments {
  border-top: 1em dotted #ccc;
  position: relative;
  padding-top: 1em;
  margin-bottom: 2em;
}
  .comments h2:first-child {
    font-weight: bold;
    margin-bottom: 1em;
  }

@media ( min-width: 55em ) {
  .comments {
    padding-left: 12em;
    margin-bottom: 0;
  }
    .comments h2:first-child {
      position: absolute;
      top: .5em;
      max-width: 6em;
      left: 0;
      margin-bottom: 0;
    }
}

.comments .comment {
  position: relative;
  padding-left: 4em;
  border-bottom: 1px solid #ccc;
  padding-top: 1em;
  padding-bottom: 1em;
  min-height: 5em;
  overflow: auto;
}
.comment > * {
  white-space: inherit !important;
}
.comment--webmention {
  min-height: 0;
}
  .comment img:first-child {
    border-radius: 100%;
    position: absolute;
    top: 1em;
    left: 0;
    max-width: 3.25em;
  }
  .comment .commenter {
    font-size: .9em;
  }
  .comment p:last-child {
    margin-bottom: 0;
  }
  .comments .comment:last-child {
    border-bottom: 0;
  }
  h2 + .comment {
    padding-top: 0;
  }
  h2 + .comment img:first-child {
    top: 0;
  }

.comment-form {
  margin-bottom: 2em;
}

.comment-form fieldset {
  border: 1px solid #ccc;
  border-top: 1em solid #ccc;
  padding: 1em;
}

.comment-form legend {
  font-size: 1.5em;
  font-weight: bold;
  padding: 0 .5em;
}

.comment-form div {
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
}
  .comment-form label {
    flex: 1;
    margin: .5em 0;
  }
  .comment-form input,
  .comment-form textarea {
    flex: 3;
    font-size: 1em;
    padding: .25em;
    border: 1px solid #ccc;
    font-family: inherit;
  }
  .comment-form .comment-submit {
    display: block;
    text-align: right;
  }
  .comment-form input[type="submit"] {
    background-color: crimson;
    color: #fff;
    font-weight: bold;
    border: 0;
    max-width: 14em;
    display: inline-block;
    -webkit-appearance: none;
    appearance: none;
    padding: .5em 1em;
  }

@media ( min-width: 55em ) {
  .comment-form {
    margin-bottom: 1em;
  }
  .comment-form div {
    flex-direction: row;
  }
}

.author {
  color: crimson;
  font-style: italic;
  margin-top: -.25em;
  margin-bottom: 4em;
}

.author p {
  margin: 0;
  font-size: .9em;
}

@media ( min-width: 55em ) {
  .author {
    margin-bottom: .75em;
  }
}

.hfeed {
  padding: 1em 0 0;
  margin: 2em 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.blog .hfeed {
  margin-top: 1em;
  padding-bottom: 1em;
}

.hfeed li {
  list-style: none;
  margin-left: 0;
  margin-bottom: 2em;
}

.hfeed-compact li {
  margin-bottom: .5em;
}

.hfeed a {
  text-decoration: none;
  display: inline-block;
  vertical-align: baseline;
}

.hfeed .post-title {
  font-weight: bold;
  font-size: 1.1em;
  display: block;
}

.hfeed .entry-summary p {
  margin: 0.5em 0; 
}

.hfeed .entry-published {
  font-style: italic;
  vertical-align: baseline;
}

@supports( display: grid ) {
  @media ( min-width: 55em ) {
    .hfeed {
      border-top: 0;
      border-left: 1px solid #ccc;
      border-right: 1px solid #ccc;
      padding: 0 2em 2em;
      margin: 0 -2em;    
    }
  }
  @media ( min-width: 70em ) {
    .hfeed {
      margin: 0 -4em 0 -2em;
    }
  }
}

@media ( min-width: 55em ) {
  .rss-feed {
    margin-top: 0;
  }  
}

.spicy-services {
  --const-mq-affordances:
    [screen and (max-width: 50em) ] collapse |
    [screen and (min-width: 70em) ] vertical-tabs
  ;
}

.service {
  border-top: 1px solid #ccc;
  padding-top: 1em;
  margin-top: 1em;
  clear:  both;
}
.service:first-child {
  margin-top: 0;
}

.examples {
  padding: 1em;
  font-size: 90%;
  box-shadow: 0 0 12px -3px #888;
  background-color: lavenderblush;
  border-radius: .25em 1em;
  margin: 1em 0 2.5em;
}
@media (min-width: 50em) {
  .examples {
    float:  right;
    max-width: 30ch;    
    transform: rotate(1deg);
    margin-left: 2em;
  }
  div:nth-child( odd ) .examples {
    transform: rotate(-1deg);
  }
}

.service ~ a {
  color: #000;
}

@media ( min-width: 30em ) {
  .examples { 
    padding: 1em 2em;
  }
}

@media ( min-width: 55em ) {
  .examples {
    margin-left: 2em;
  }
}

.about-me-where,
.about-me-what {
  margin: 1em 0;
}

.about-me-where > ul {
  columns: 2;
}

@media ( min-width: 55em ) {
  .about-me-where,
  .about-me-what {
    margin: 0;
  }
  .about-me-where > ul {
    columns: 1;
  }
}

.paging {
  margin-bottom: 2em;
  text-align: right;
}
  .paging a {
    padding: .5em 1em;
    background-color: #000;
    border: 2px solid #000;
    color: #fff;
    text-decoration: none;
  }
  .paging a:hover {
    background-color: #fff;
    color: #000;
  }

.nav a {
  text-decoration: none;
  font-weight: bold;
  padding: 0;
  margin: .375em 0;
  display: inline-block;
  font-size: 90%;
  transition: border-color 0.2s ease-in;
}

.nav a:hover {
  border-bottom-color: black;
}

@media ( min-width: 55em ) {
  .nav a {
    margin-right: 1.5em;
  }
}
@media ( min-width: 60em ) {
  .nav a {
    margin-right: 2.5em;
  }
}
@media ( min-width: 70em ) {
  .nav a {
    margin-right: 3em;
  }
}

.footer {
  margin: 2em -1em 0 -1em;
  background-color: midnightblue;
  color: aliceblue;
  text-align: center;
  padding: 0 1em;
  font-size: 1rem;
}
  .footer a {
    color: inherit;
    padding: .25em .75em;
  }

@media ( min-width: 55em ) {
  .footer {
    margin-top: 0;
    text-align: right;
    padding: .75em;
    margin: 0;
  }
}

.footer {
  font-variant-numeric: lining-nums;
}
@media (min-width:50em) {
  .footer {
    display: flex;
  }
}
.footer p:first-child {
  margin: 0 auto 0 0;
  padding: .25em .75em;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  gap: 1em;
  overflow: auto;
}
.main-nav a {
  text-decoration: none;
  padding: .5em 0 2em;
  color: black;
  white-space: nowrap;
  font-weight: normal;
}
@media ( min-width: 55em ) {
  .main-nav {
    background-color: darkslateblue;
    margin-left: -2em;
    padding-left: 2em;
    display: block;
    font-weight: bold;
  }
  .main-nav a {
    padding: 0;
  }
  .main-nav a {
    color: white;
    line-height: 1.2;
    font-weight: bold;
    border-bottom: 2px solid transparent;
  }
  .main-nav a:hover {
    border-color: white;
  }
  .main-nav a:focus {
    outline-color: white;
  }
}
@media ( min-width: 70em ) {
  .main-nav {
    margin-left: -4em;
    padding-left: 4em;
  }
}

.main-nav .current {
  border-color: #ffdbc5;
}

@supports( display: grid ) {
  .main-nav {
    text-align: left;
  }
}

@media ( min-width: 55em ) {
    .go-to-nav {
        top: -9999em;
        right: 0;
    }
    .go-to-nav:focus {
      top: 0;
    }
}

#category-link-preview {
  display: none;
}

.blog-roll {
    font-size: 0.9em;
    grid-column: 2 / 4;
    color: #888;
}
    .blog-roll h2 {
        font-size: .9em;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    .blog-roll ul {
        margin-left: 0;
        padding-left: 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(10em, 1fr));
     }
    .blog-roll li {
        display: block;
        margin: .125em .025em;
    }
    .blog-roll a {
        text-decoration: none;
        color: #616060;
        padding: .25em .5em;
        border: 1px solid #cac7c7;
        border-top: 0;
        border-right: 0;
        display: block;
    }
    .blog-roll a:hover {
        color: crimson;
    }
@media ( min-width: 80em ) {
    .blog-roll {
        padding: 0 2em;
        grid-column: 1 / end;
    }
}

.caps {
  font-variant: small-caps;
}

.best-of {
  grid-column: 2 / 6;
  background: #ffdbc5;
  padding: 1em;
  max-width: 49.25em;
  margin-top: 2em;
}
  @media (min-width: 55em) {
    .best-of {
      margin-top: 0;
    }
  }
  .best-of h2 {
    font-weight: bold;
    text-transform: uppercase;
    padding-left: .75em;
    transform: rotate(-1deg);
    margin-top: -1em;
    letter-spacing: .05em;
    margin-left: -.125em;
    text-align: right;
    margin-bottom: 0;
    margin-top: -1.25em;
  }
  @media (min-width: 55em) {
    .best-of h2 {
      margin-top: -1em;
    }
  }
  .best-of p { 
    max-width: 18em;
    padding-left: 1em;
    margin: 0 auto 1em;
    float: right;
  }
  .best-of ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: .5em;
    clear: both;
    align-items: end;
  }
  @media (min-width: 55em) {
    .best-of ul {
      grid-template-columns: 1fr 1fr 1fr;
      grid-gap: 1em;
    }
  }
  .best-of li {
    list-style: none;
    margin-left: 0;
  }
  .best-of a {
    text-decoration: none;
    color: inherit;
    background: #fff;
    padding: 1em;
    display: block;
    transition: 0.1s all;
  }
  .best-of a:hover {
    outline: 1px solid #555;
    background: rgba(255,255,255,.5);
  }

@media (prefers-color-scheme: dark) {
  body.page-home {
    background-color: #171717;
  }
  h2, h3, h4, h5, h6 {
    color: #fff;
  }
  html, .examples {
    background-color: #333;
  }
  body {
    color: #e2dfdf;
    background-color: #171717;
  }
  p a, dd a, dd a:visited, li a, .comment a, .home-intro-text a, h1 + .post-meta, .author {
    color: #d7723f; /* orange */
  }
  .page-logo,
  .comment-form input[type="submit"] {
    background-color: #d7723f;
  }
  .entry-content p > img + em {
    color: #898989;
  }
  p a:hover, li a:hover, .comment a:hover, aside.examples a {
    color: #fff;
  }
  .nav a,
  .page-title a {
    color: #fff;
  }
  .page-title-home {
  	color: papayawhip;
  }
  h1.page-title-home em {
  	color: white;
  }
  .recent-work article {
  	box-shadow: 4px 4px 0px 0px #ccc;
    padding-left: 2em;
  }
  .recent-work img {
  	display: none;
  }
  .footer {
    background-color: #333;
  }
  :focus {
    outline: 2px solid white;
  }
  .hfeed,
  .entry-content,
  .comments .comment,
  .comment-form fieldset,
  .blog-roll a {
    border-color: #515151;
  }
  .blog-roll a {
    color: #dedede;
  }
  .recent-work {
    background-color: #333;
  }
  .recent-work article {
    background-color: #222;
  }
  .home-intro-text a {
    background-color: #272727;
  }
  h1.post-title {
    color: #d7723f;
  }
  .best-of {
    background-color: #1e5862;
  }
  .best-of a {
    background-color: rgba(255,255,255,0.1);
  }
  .best-of a:hover {
    outline-color: #000;
    background-color: rgba(255,255,255,0);
  }
} 
@media (prefers-color-scheme: dark) and (min-width: 55em) {
  .main-nav {
    background-color: #313131;
  }
  .home-intro-text a {
    background-color: transparent;
  }
}
@media (prefers-color-scheme: dark) and (max-width: 55em) {
    .main-nav a {
      color: #a2a2a2;
    }
}

@supports (grid-template-columns: subgrid) {
  @media (min-width: 60em) {
    .comments {
      background-color: #ffeded;
      grid-column: 1 / end;
      display: grid;
      grid-template-columns: subgrid;
      padding-left: 0;
      border-top-color: rgb(247, 195, 195);
    }
      .comments h2 {
        grid-column: 2 / 3;
      }
      .comments h2:first-child {
        max-width: none;
        position: sticky;
        top: .5em;
      }
      .comments .comment {
        grid-column: 3 / 4;
        border-color: #ffbcbc;
      }
  }
  @media (min-width: 60em) and (prefers-color-scheme: dark) {
    .comments {
      background-color: #182a3e;
      border-top-color: rgba(255,255,255,0.2);
    }
  }
}


