/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body { 
  font-family: "BBH Bogle", sans-serif;
  @font-face {
  font-family: 'BBH Bogle'; /* A name you choose to use the font */
  src: url('fonts/BBHBogle-Regular.woff2') format('woff2'), /* Path to your font file */
       url('fonts/BBHBogle-Regular.woff') format('woff'); /* Fallback for older browsers */
  font-weight: normal; /* Adjust this if you have different weights */
  font-style: normal;
  h1{
  font-family: 'BBH Bogle', sans-serif; /* Always include a generic fallback */
}

/* Example: Apply BBH Bogle to a specific class */
.bogle-text {
  font-family: 'BBH Bogle', Arial, sans-serif;
}
}
  background-color:  black;
  color: black;
  font-family: BBH Bogle;
}