body {
  font-family: "Lucida Console", monospace;
  font-size: 11px;
  color: #333; /* Dark gray text for better contrast */
  background-color: #f7f7f7; /* Soft off-white background */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 50px;
  box-sizing: border-box;
  line-height: 1.6;
}


/* Optional Styling for Links */
a {
  color: #0066cc; /* Professional blue for links */
  text-decoration: none;
}

a:hover {
  color: #004999; /* Darker blue on hover */
}

@media (min-width: 768px) {
  body {
    font-size: 14px;
  }
}

.separator {
  letter-spacing: -9px;
}

hr {
  border: none;
  height: 2px;
  background-color: lightgrey;
  width: 100%;
  margin: 30px auto;
}

.links-container {
  margin-top: 20px;
}

.links-container a {
  text-decoration: none;
  margin: 10px;
  color: inherit;
}

h2 {
  font-size: 24px;
  margin-top: 55px;
}

p {
  margin-bottom: 20px;
  line-height: 1.6;
	white-space: pre-wrap;
}

li {
  margin-bottom: 10px;
}

pre,
code {
  font-family: "Fira Code", monospace;
}

img {
  display: block;
  max-width: 70vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

/* Article Layout */
article {
  max-width: 700px; /* This keeps your content narrow and centered */
  margin: 1px auto; /* Centers the content */
  padding: 20px;
}
