/* Homepage only.

   index.html is the one page that loads bootstrap 3.4 (from a CDN) *before*
   bootstrap 5. Four BS3 declarations survive because BS5 never overrides them:
   `.navbar-nav>li>a` (0,1,2) outranks `.nav-link` (0,1,0) on padding and
   line-height, and BS5 sets neither a border on `.navbar` nor padding on
   `.navbar-collapse`. They shift the menu 15px right and the logo 1px down.

   The inner pages do NOT load BS3, so this must stay off them - verified
   against both pages' live computed styles. */
.navbar{margin-bottom:20px;border:1px solid transparent}
.navbar-collapse{padding-right:15px;padding-left:15px}
.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}
@media (min-width:768px){.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}
