<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --font-ptimary: "Roboto Serif", serif;
  --color-primary: #0b0c5c;
  --color-black: #000;
}

/*
&lt;weight&gt;: Use a value from 100 to 900
&lt;uniquifier&gt;: Use a unique and descriptive class name

.roboto-serif-&lt;uniquifier&gt; {
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: &lt;weight&gt;;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "GRAD" 0;
}
*/

body {
  font-family: var(--font-ptimary);
  font-size: 1.25rem;
  line-height: 1.66lh;
  color: var(--color-black);
}

img {
  height: auto;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: var(--color-primary);
}

.container-medium {
  max-width: 992px;
}

#header {
  padding: 3rem 0;
  a.navbar-brand {
    max-width: 24rem;
  }
}

.section-intro {
  padding: 0 0 3rem;
}</pre></body></html>