/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* Base */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

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

a:hover {
  color: #aab3bd;
  text-decoration: underline;
}

/* Navbar */
.navbar {
  border-bottom: 1px solid #4A9EFF33;
}

.navbar-brand {
  font-weight: 700;
  color: #ffffff !important;
}

/* Code blocks */
code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88em;
}

pre code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  line-height: 1.6;
}