/* === Halloween Quarto Theme === */
/* Designed by ChatGPT + Jason Geller 👻 */

@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Montserrat:wght@400;600&display=swap');

/* Body styling */
body {
  background-color: #0d0d0d;
  color: #f5f3ce;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Creepster', cursive;
  color: #ff7518;
  text-shadow: 2px 2px 5px #000000;
  margin-top: 1.2em;
}

h1 {
  font-size: 2.6em;
  text-align: center;
}

h2 {
  border-bottom: 2px solid #ff7518;
  padding-bottom: 0.3em;
}

/* Links */
a {
  color: #ffcc00;
  text-decoration: none;
}

a:hover {
  color: #ff7518;
  text-shadow: 0 0 8px #ff7518;
}

/* Code and preformatted text */
code {
  background-color: #1e1e1e;
  color: #ffcc00;
  border-radius: 4px;
  padding: 2px 4px;
}

pre code {
  display: block;
  background-color: #1a1a1a;
  border-left: 4px solid #ff7518;
  padding:
