@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;
}

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

.text-kfu {
    color: var(--color-kfuyellow);
}

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

.navbar-brand {
    font-weight: 800;
}
.navbar-brand:link {
    font-weight: 800;
    background-image: none;
}

.nav-link.active {
    font-weight: bold;
}

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-kfuyellow), var(--color-kfuyellow));
    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 a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    background-image: none;
}

footer a:hover {
    color: var(--bs-secondary-color);
    filter: brightness(250%);
    text-decoration: none;
    transition: none;
    background-image: none;
}

