/* 
some notes
https://github.com/twbs/bootstrap/blob/main/scss/_variables.scss 
https://stackoverflow.com/questions/75464776/how-to-override-the-default-font-using-locally-stored-fonts-in-themes
*/

/*-- scss:defaults --*/

$font-family-sans-serif: "Lato";
$font-family-monospace: "Lato";
$bs-body-font-family: "Lato";
$web-font-path: "No";
$font-size-root: 18px;

/*-- scss:rules --*/

@font-face {
  font-display: swap; 
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/Lato-Regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+ */
       url('fonts/Lato-Regular.woff') format('woff'); /* Chrome 5+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* css styles */
.navbar-logo {
    min-height: 40px;
    /*max-width: 50px;*/
    padding-right: 5px;
}

.imageinline {
  margin: -1px 0px;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0);
}

/* 
.quarto-title {
  opacity: 0 !important;
  margin-top: -50px;
}
*/