* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --column-width: 530px;
}

body {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 2rem;
  background-color: #f0f0f1;
}

a{
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.1rem;
}



.satanic-ceramics {
  display: flex;
  justify-content: center;
}

.satanic-ceramics a {
  display: inline-block;
  width: fit-content;
}

.julien{
  display:flex;
  justify-content: center;
}

.julien a{
  text-align: center;
  font-variant: small-caps;
  color:#000000;
  letter-spacing: 0.1em;
  display:inline-block;
  margin: 2rem;
}

img {
  display: block;
  width: auto;
  max-width: var(--column-width);
  height: auto;
}

@media (min-width: 400px) {
  img {
    min-width: 400px;
  }
}

.image-wrap{
  text-align: center;
}

figure {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

figure img{
  max-height: var(--column-width);
  object-fit: contain;
}

figcaption {
  text-align: right;
  margin: 0.5rem 0;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: #000000;
}

h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.flex {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 750px) {
  .flex {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   Typography
   ============================================ */
main p, main li, main h2, main h3, main h4, main blockquote {
  margin-bottom: 0.5rem;
}

main .content{
  white-space: pre-line;
  max-width: var(--column-width);
  margin: 2rem auto 1rem;
}

p.date {
  font-style: italic;
  max-width: var(--column-width);
  margin: 0.5rem auto
}

/* ============================================
   Header & Footer
   ============================================ */
header {
  text-align: center;
  padding: 1rem;
}

footer {
  text-align: center;
  padding: 2rem;
}

footer nav{
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  font-style: italic;
}


footer nav ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}


/* ============================================
   Homepage
   ============================================ */
.page-home header h1 {
  display: none;
}


/* ============================================
   Lists ============================================ */

#texts-list{
  min-width: 400px;
}

#texts-list ul {
  list-style: none;
  margin-bottom: 0.75rem;
}

#product-list {
  max-width: var(--column-width);
  margin: 2rem auto 0rem;
}

#product-list h2{
text-align: center;
margin: 2rem 0 0;
}

#software-list h2{
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

#software-list {
  max-width: var(--column-width);
  margin: 0 auto 0;
}

.kofiimg {
  min-width: 0 !important;
  max-width: 200px;
}

/* ============================================
   Post Navigation
   ============================================ */
.post-navigation {
  max-width: var(--column-width);
  margin: 2rem auto 0;
}

.post-navigation ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0;
  gap: 1rem;
}

.post-navigation li {
  flex: 1;
}

.post-navigation .nav-previous { text-align: left; }
.post-navigation .nav-collection { text-align: center; }
.post-navigation .nav-next { text-align: right; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 640px) {
  body {
    padding: 0 1rem;
  }

  .post-navigation ul {
    flex-direction: column;
  }

  .post-navigation li {
    width: 100%;
    text-align: center;
  }
}