<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Common styles for headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  line-height: 1.2; /* Tighter line height for better readability */
}

h1 {
  font-size: 2.5rem; /* Large size for main headings */
  margin-bottom: 1rem; /* Spacing below headings */
  position: relative; /* Required for the horizontal line */
  padding-top: 1rem; /* Space between the line and the heading */
}

h2::before {
  content: ''; /* Create a pseudo-element for the line */
  display: block;
  width: 60px; /* Length of the line */
  height: 6px; /* Thickness of the line */
  background-color: currentColor; /* Line color matches text color */
  position: absolute;
  top: 0; /* Align the line at the top */
}

h2 {
  font-size: 2rem; /* Medium size for subheadings */
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.75rem; /* Smaller size for tertiary headings */
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.3rem; /* Smaller size for tertiary headings */
  font-weight: bold;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Prose styling for content */
.prose {
  max-width: 90ch; /* Limit width for readability */
  margin-left: auto;
  margin-right: auto;
}

.prose p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Left-align text */
.prose {
  text-align: left;
}

/* Big green button style */
.prose a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #22c55e; /* Green background */
  color: white; /* White text */
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}
ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

.prose a.button:hover {
  background-color: #16a34a; /* Darker green on hover */
}

.prose a.button::after {
  content: ' →'; /* Right chevron */
  margin-left: 0.5rem;
}
code {
  min-width: 100%;
  font-family: Inter;
  width: 0px;
  white-space: pre-line;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}</pre></body></html>