@font-face {
  font-family: "Fira Sans";
  src: url("Fonts/FiraSans-Regular.woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Fira Sans";
  src: url("Fonts/FiraSans-Italic.woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Fira Sans";
  src: url("Fonts/FiraSans-SemiBold.woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Fira Sans";
  src: url("Fonts/FiraSans-SemiBoldItalic.woff2");
  font-weight: 600;
  font-style: italic;
}

body {
  font-family: "Fira Sans", sans-serif;
  font-variant-numeric: oldstyle-nums;
  font-kerning: auto;
  font-variant-ligatures: common-ligatures;
  margin: 0;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: #002147;
}
h4 {
  margin-bottom: 0.5rem;
}
a {
  color: #be0f34;
  text-decoration: none;
}
ul, ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
button, input, textarea {
  font-family: "Fira Sans", sans-serif;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid #00214719;
  border-radius: 0.5rem;
  transition: ease-in-out color .15s, ease-in-out background-color .15s, ease-in-out border-color .15s, ease-in-out box-shadow .15s;
  outline: 0;
}
button:focus, input:focus, textarea:focus {
  border-color: #002147;
  box-shadow: 0 0 0 0.25rem #0021477F;
}
button {
  color: white;
  background-color: #002147;
  border-color: #002147;
  cursor: pointer;
}
input[type="file"] {
  cursor: pointer;
}
input::file-selector-button {
  font-family: inherit;
  padding: 0.5rem 0.75rem;
  margin: -0.5rem -0.75rem;
  margin-inline-end: 0.75rem;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
}
table {
  width: 100%;
  border: 1px solid #00214719;
  border-collapse: collapse;
}
thead {
  border-bottom: 1px solid #00214719;
}
td {
  padding: 0.5rem;
}

.center {
  text-align: center;
}
.avoid-wrap {
  display: inline-block;
}
.container {
  max-width: 60rem;
  padding: 0.5rem 1rem;
  margin-left: auto;
  margin-right: auto;
}

.navbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background-color: #00214719;
  padding: 0.75rem;
}
.navbar > :first-child {
  font-size: 1.25rem;
}
.navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}
.navbar a {
  color: #44687d;
  margin: 0.25rem 0.5rem;
}
.navbar a.active {
  color: #22343e;
}
.header {
  background-color: #00214719;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.header-row {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 40rem) {
  .header-row {
    flex-wrap: wrap-reverse;
  }
}
.header-image {
  width: 10rem;
  border-radius: 100%;
  margin: auto;
}
.header-text {
  flex: 1 1 auto;
}
.header-title {
  margin-bottom: 0;
}
.header-title + .header-subtitle {
  margin-top: 2rem;
}
.header-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.content {
  padding-bottom: 2rem;
}

.katex-html {
  white-space: nowrap;
}