/* Load FreeMono locally */
@font-face {
  font-family: 'FreeMono';
  src: url('/assets/fonts/FreeMono.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Global body styling */
body {
  font-family: 'FreeMono', monospace;
  background: #121212;
  color: #e0e0e0;
  max-width: 700px;
  margin: 2rem auto;
  padding: 0 1rem;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: #63d123;
  font-family: inherit;
}

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

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

/* Code and preformatted text */
pre, code {
  background-color: #222;
  color: #ccc;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: inherit;
}

/* Header and footer */
header, footer {
  text-align: center;
  margin-bottom: 2rem;
  color: #d4e214;
  font-family: inherit;
}

/* Force all elements to use the same font */
* {
  font-family: inherit;
}
