/* GREETINGS FROM NIAGARA title button — map page */

/* Default: black background, beige text */
html body .site-brand-control,
html body .site-brand-control:link,
html body .site-brand-control:visited {
  background-color: #050505 !important;
  background-image: none !important;
  color: #f1ede3 !important;
  -webkit-text-fill-color: #f1ede3 !important;

  letter-spacing:.12em !important;
  text-decoration: none !important;
  font-weight: 400 !important;
  font-size: 2em !important;

  box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.32) !important;
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;

  transition:
    background-color 220ms ease,
    color 220ms ease,
    letter-spacing 260ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease !important;
}

/* Hover: beige background, black text, wider spacing.
   Keep the box shadow. */
html body .site-brand-control:hover,
html body .site-brand-control:focus-visible {
  background-color: #050505 !important;
  background-image: none !important;
  color: #f1ede3 !important;
  -webkit-text-fill-color: #f1ede3 !important;

  letter-spacing: 0.19em !important;
  box-shadow: -4px 4px 0 rgb(245 244 238) !important;
  opacity: 0.94 !important;
  transform: none !important;
  filter: none !important;
  font-weight: 700 !important;
  font-size: 2em !important;
}

@media (prefers-reduced-motion: reduce) {
  html body .site-brand-control {
    transition: none !important;
  }
}

/* Move the title flush against the top edge */
html body .leaflet-top.leaflet-right .site-brand-control {
  margin-top: -10px !important;
}
