.container-header {
  --cassiopeia-color-primary: Turquoise;
  --cassiopeia-color-hover: Turquoise;
  --cassiopeia-color-link: #1C5E5A;
}
/* --cassiopeia-color-hover: #174F4B; */
/* Import font from Google - Go to fonts.google.com, select a font and look for the import command */
@import url('https://fonts.googleapis.com/css2?family=Alumni Sans Pinstripe:wght@100&display=swap');
/* Use the imported font on the page: On Google you can also find the CSS instruction for using the font. If you put this in the body element then the font will be used on the whole website. */
body {
    font-family: 'Alumni Sans Pinstripe', sans-serif;
}
p {
  border-radius: 5px;
}
page-header.h1 { font-size: 10px }

.sticky-top-2 {
  position: sticky;
  top: 180;
  z-index: 1000;
              }