:root {
  --site-width: 45rem;
  --color-one: #A6033F;
  --color-background: #F2D8DA;
  --color-three: #f266c1;
  --color-four: #D99C9C;
  --color-five: #1E2B40;
  --color-six: #00CBC9;
  --color-seven: #FF9F00;
  --color-eight: #51608C;
  --color-nine: #F28705;
  --color-ten: #F23005;
  --color-eleven: #D9A404;
  --color-twelve: #32838C;
}

body {
  font-family: "Courier", "Courier Prime", "Courier New", sans-serif;
  font-weight: bold;
  font-family: Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-weight: normal;
  font-display: swap;
  height: 100vh;
  overflow-x: auto;
  overflow-y: scroll;
  margin: 0 auto;
  min-width: 320px;
  color: var(--color-five);
  cursor: url("/assets/images/cursor-pointer.png") 12 0, auto;
}
body .color-scheme-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr;
  min-height: 100vh;
  background-color: var(--color-five);
  color: var(--color-background);
}

#nav-wrapper {
  padding: 1rem;
}
#nav-wrapper #site-logo-text {
  font-family: "Courier", "Courier Prime", "Courier New", sans-serif;
  font-weight: bold;
  margin: 0 auto 1rem auto;
  max-width: var(--site-width);
}
#nav-wrapper #site-logo-text a {
  text-decoration: none;
}
#nav-wrapper #header-nav-bar {
  margin: 0 auto;
}
#nav-wrapper #header-nav-bar nav {
  font-family: "Courier", "Courier Prime", "Courier New", sans-serif;
  font-weight: bold;
  display: flex;
  margin: 0 auto;
  max-width: var(--site-width);
}
#nav-wrapper #header-nav-bar nav a {
  display: block;
  text-decoration: none;
  margin-right: 1rem;
}

#main-wrapper main {
  margin: 0 auto;
  padding: 0 1rem;
  max-width: var(--site-width);
}

#footer-wrapper {
  font-family: "Courier", "Courier Prime", "Courier New", sans-serif;
  font-weight: bold;
}
#footer-wrapper footer {
  margin: 0 auto;
  max-width: var(--site-width);
  color: var(--color-background);
  padding: 1rem 1rem;
}
#footer-wrapper footer a {
  text-decoration: none;
}

p {
  line-height: 1.3rem;
}

a {
  outline: 0;
  cursor: url("/assets/images/cursor-hand.png") 12 0, auto;
  color: var(--color-six);
}

a:hover {
  color: var(--color-three);
}

/* Headings */
h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.571em;
} /* 22px */
h3 {
  font-size: 1.429em;
} /* 20px */
h4 {
  font-size: 1.286em;
} /* 18px */
h5 {
  font-size: 1.143em;
} /* 16px */
h6 {
  font-size: 1em;
} /* 14px */
h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  line-height: 1.1;
  font-family: "Courier", "Courier Prime", "Courier New", sans-serif;
  font-weight: bold;
}

#index-nav nav {
  font-family: "Courier", "Courier Prime", "Courier New", sans-serif;
  font-weight: bold;
  margin: 1rem 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 0.5rem;
  grid-row-gap: 0.5rem;
  text-align: center;
  font-size: 2rem;
}
#index-nav nav a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  background: var(--color-six);
  color: var(--color-five);
  grid-column: span 1;
}
#index-nav nav a:hover {
  background-color: var(--color-three);
  color: var(--color-background);
}

img#article-hero {
  max-width: 100%;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

img.recipeimage {
  max-width: 100%;
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

article img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

#date_created, #date_modified {
  font-family: "Courier", "Courier Prime", "Courier New", sans-serif;
  font-weight: bold;
}

li + li {
  margin-top: 1rem;
}

.bottom-line {
  border-top: 4px solid var(--color-seven);
  height: 4px;
}

img.pixelart {
  image-rendering: pixelated;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
  max-width: 100%;
}

@media (min-width: 480px) {
  #index-nav nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
