/* Light color scheme (Default) */
/* Can be forced with data-theme="light" */
[data-theme="light"],
:root:not([data-theme="dark"]) {
  --pico-color: #111;
  --pico-background-color: #fefefe;

  h2, h3, h4, h5 {
      color: #111;
  }

  h2 a {
      color: #111;
  }

}
/* Dark color scheme (Auto) */
/* Automatically enabled if user has Dark mode enabled */
 @media only screen and (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --pico-color: #eee;
    --pico-background-color: #111;
   
    h2, h3, h4, h5 {
      color: #eee;
    }

    h2 a {
      color: #eee;
    }
  }
}

/* Dark color scheme (Forced) */
/* Enabled if forced with data-theme="dark" */
[data-theme="dark"] {
  --pico-color: #eee;
    --pico-background-color: #111;

    h2, h3, h4, h5 {
      color: #eee;
    }
    

    h2 a {
      color: #eee;
    }
}

h1 {
  --pico-font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; 
}

h2 {
  --pico-font-size: 2.4rem;
}

article {
  background: transparent;
    box-shadow: none;
}

:root {
   --pico-font-family-sans-serif: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important; 
}

header {
  display: flex;
  justify-content: center;
}

main {
  max-width: 800px;
}

header {
  background: linear-gradient(174deg,rgb(98,87,64) 1%,rgb(60,50,38) 100%);
}

footer {
  display: flex;
  justify-content: center;
}

figure {
  display: flex;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
}

figure img {
  max-block-size: 90vh;
}

header {
  display: flex;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
}

figcaption {
  font-size: 14px;  
}

h2 {
  text-align: center;
  margin-bottom: 16px;
}

h2 a {
  color: var(--pico-color);
  text-decoration: none;
}

.postTimestamp {
  display: flex;
  justify-content: center;
  font-size: 14px;
}

.postTimestamp time {
  padding-top: 8px;
  border-top: 1px solid var(--pico-muted-color);
  color: var(--pico-muted-color);
}

.postContent {
  padding-top: 32px;
  padding-bottom: 32px;
}

.logo {
  width: 200px;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

h1 {
    --pico-font-family: Pacifico, cursive;
    --pico-font-weight: 400;
    --pico-typography-spacing-vertical: 0.5rem;
  }
  button {
    --pico-font-weight: 700;
  }

.theme-toggle svg {
  fill: var(--pico-primary-inverse);
}