/** @format */

/* Sitewide typeface — kept here as the single source of truth instead of
   being declared ad-hoc inside individual partials. */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.video-docker video {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-docker::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    #003c43,
    rgba(27, 45, 49, 0.4)
  ); /* Gradient from left to right */
  z-index: 1;
}

.breadcrumb {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to right,
    #7feffc,
    rgba(137, 196, 211, 0.4)
  ); /* Gradient from left to right */
  z-index: 1;
}
