@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

body {
  font-family: "Jost", sans-serif;
}

.banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/img/banner.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.separator {
  border-top: 2px solid black;
  width: 40px;
}

.text-primary-subtle {
  color: var(--bs-primary-text-emphasis) !important;
}

/* LG Screens */
@media (min-width: 993px) {
  .banner {
    background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("/img/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 800px;
  }
}
