
/* set the color for frocos titles, links and so on */
:root{
    --frocos-color: var(--user-blue)
}

h1.title{
    color: var(--frocos-color);
}

h2.subtitle{
	font-weight: bold;
	font-size: 20pt;
	color: var(--frocos-color);
}

a.on-page{
    font-weight: bold;
}

a.on-page:active{
    color: var(--frocos-color)
}

/* nav-link: links in the top menu bar */

a.nav-link{
    color: var(--frocos-color);
}

a.nav-link:link{
    color: var(--frocos-color);
}

a.nav-link:visited{
    color: var(--frocos-color);
}

a.nav-link:hover{
    color: var(--user-yellow);
}

a.nav-link:active{
    color: var(--frocos-color);
}