@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');


:root {
  --color-kfuyellow: #ffd500;
  --color-fwfblue: #2a2d6c;
  --color-sfbgreen: #476c2a;
}

body {
  font-family: 'Nunito Sans', sans-serif;
}

.bg-kfu {
  background-color: var(--color-fwfblue);
}

.navbar-brand {
  font-weight: 800;
}
.navbar-brand:link {
  font-weight: 800;
  background-image: none;
}
.navbar a {
  color: white;
}
.navbar a:hover {
  color: white;
}
.navbar a.active {
  font-weight: bold;
}
.navbar-nav .nav-link.active {
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  padding-top: 10px;
  padding-bottom: 15px;
}

a {
  color: var(--bs-body-color);
  text-decoration: none;
  position: relative;
  background-image: linear-gradient(0deg,#000,#000);
  background-size: 100% 1px;
  background-position: left 0 bottom 1px;
  background-repeat: no-repeat;
}

a:hover {
  color: #000;
  text-decoration: none;
  background-image: linear-gradient(0deg, var(--color-sfbgreen), var(--color-sfbgreen));
  background-repeat: no-repeat;
  transition: background-size .4s ease,color .4s ease,fill .4s ease;
  background-size: 100% 3px;
  background-position: right 0 bottom 1px;
}

code {
  color: #689cce;
}

footer {
  color: #aaa;
}
footer a {
  color: #aaa;
  background-image: none;
}

.annotation {
  font-size: 0.8em;
  color: #555;
}
