<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  line-height: 1.5;
  font-size: max(1.2rem, 1.2vw);
}

.slogan {
  color: #222222;
}

.headline {
  text-shadow: -1px -1px 1px rgba(20, 20, 20, 0.25);
}
.headline &gt; a {
  text-decoration: none;
}

a.link {
  text-decoration: none;
}

header &gt; div.row {
  flex-grow: 1;
}
header &gt; div.row a {
  align-self: center;
}

#motivation {
  font-size: max(1rem, 0.95vw);
  line-height: 1.5;
  width: min(800px, 80% + 100px);
}

div.tags &gt; h4:first-child ~ h4 {
  border-radius: 5px 9px 5px;
}

div.tags + img {
  float: right;
  padding-left: 1.5rem;
}

p.entry &gt; a {
  position: relative;
  text-decoration: none;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  color: #865619;
}
p.entry &gt; a::before {
  position: absolute;
  z-index: -1;
  content: "";
  background: #e08f29;
  height: 0.5rem;
  left: 0;
  bottom: -0.25rem;
  width: 0%;
  opacity: 0.6;
  transition: all 0.5s;
  transform: rotate(-1deg);
}
p.entry &gt; a:hover {
  color: #432b0c;
}
p.entry &gt; a:hover::before {
  width: 100%;
}

article ~ div {
  line-height: 1.5;
  font-size: max(1rem, 0.9vw);
}

@media (max-width: 1250px) {
  article &gt; header {
    width: min(300px, 80% + 100px);
  }
  article &gt; .tags {
    row-gap: 7px;
    width: min(300px, 80% + 100px);
  }
  #motivation {
    width: min(350px, 80% + 100px);
  }
  #motivation ~ div {
    width: min(250px, 80% + 100px);
  }
  article ~ div {
    font-size: min(1rem, 4vw);
  }
  /* comments */
  textarea {
    width: 18rem;
  }
  .comment.container {
    margin-bottom: 2rem;
  }
}
#sidebar {
  margin-left: -2rem;
  font-size: 1.0625rem;
}
#sidebar h3 {
  text-align: left;
  margin-left: -1rem;
}
#sidebar ul {
  list-style: circle;
}
#sidebar ul li:not(:last-child) {
  padding-bottom: 0.7rem;
}

table.archive {
  margin: 0 auto;
  margin-bottom: 5rem;
  margin-top: -2rem;
  width: 100%;
  max-width: 55rem;
  background-color: #361f1f;
  color: #edebdf;
  font-size: 1.125rem;
  box-sizing: border-box;
  border-collapse: separate;
  border-width: 0.3rem;
  border-color: #edebdf;
  text-shadow: #0f2b61 0px -1px 1px;
  text-decoration: none;
  border-spacing: 10.5px 17px;
  border-style: solid;
}
table.archive .archive_header {
  text-align: center;
  text-shadow: #e08f29 0px 0px 7px;
}
table.archive td &gt; a {
  position: relative;
  text-decoration: none;
  color: #865619;
  display: inline-block;
}
table.archive td &gt; a::before {
  position: absolute;
  z-index: 1;
  content: "";
  background: #865619;
  height: 0.2rem;
  left: 0;
  bottom: -0.25rem;
  width: 0%;
  opacity: 0.6;
  transition: all 0.5s;
  transform: rotate(-1deg);
}
table.archive td &gt; a:hover {
  color: #fdff98;
}
table.archive td &gt; a:hover::before {
  width: 100%;
}

header {
  width: 100%;
}

h1 {
  font-size: clamp(1.8rem, 2.5vw, 2.75rem);
}

h2 {
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 1.5;
}

h3 {
  font-size: clamp(1rem, 1vw, 1.25rem);
}

#sitebar &gt; h3, #blogbar &gt; h3 {
  font-style: italic;
}

article &gt; header ~ div &gt; h4:first-child {
  align-self: center;
}

div#motivate {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

#motivation {
  grid-column: span 3;
}

#motivation + #author {
  grid-row: 2/3;
  grid-column: 1/2;
  align-self: center;
}

body {
  grid-template-areas: "title title" "articles sidebar" "archive sidebar";
  grid-template-columns: 6fr 1.25fr;
  grid-template-rows: 5% 5fr auto;
}
body #title {
  grid-area: title;
}
body #article {
  grid-area: 2/1/4/3;
  max-width: 90rem;
}
body #article .imageContainer {
  text-align: center;
}
body #article p.entry {
  margin-top: 1rem;
}
body #articles {
  grid-area: articles;
  max-width: 80rem;
}
body #sidebar {
  grid-area: sidebar;
}
body #archive {
  grid-area: archive;
}

@media (max-width: 1250px) {
  #sidebar {
    display: none;
  }
  #archive {
    display: none;
  }
  div#motivate {
    grid-template-rows: repeat(auto-fit, minmax(10px, 1fr));
    gap: 1rem;
  }
}
.articleAndComments {
  grid-template-areas: "article" "comments";
  grid-template-rows: 1fr auto;
}
.articleAndComments article {
  grid-area: article;
}
.articleAndComments div {
  grid-area: comments;
}

#logo &gt; img {
  max-width: 100%;
  width: 140px;
  height: auto;
  margin-left: 2rem;
}

.slogan {
  flex: initial;
  flex-flow: column wrap;
  gap: 1.5rem;
}

@media (max-width: 1250px) {
  header {
    gap: 1rem;
    width: 100%;
  }
  .slogan {
    width: 100%;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    gap: 1rem;
  }
  #logo {
    justify-content: space-around;
  }
  #logo &gt; img {
    width: 115px;
    margin-left: 0;
  }
  article &gt; img {
    margin-bottom: 1rem;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

/* make the &lt;audio-player&gt; component invisible before it is defined.
 * and try to duplicate its eventual  layout and size so that nearby
 * content does not move when it becomes defined
 */
audio-player:not(:defined) {
  opacity: 0;
  display: inline-block;
  width: 300px;
  height: 50px;
}

/*# sourceMappingURL=site.css.map */
</pre></body></html>