*, *::before, *::after {
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

:root {
  background-color: var(--bg);
  color: var(--primary);
  font-family: sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  scroll-behavior: smooth;

  /* CSS Variables: */
  --bg: oklch(90.67% 0.0001 271.152);
  --primary: oklch(18.604% 0.00261 248.156);

  @media (min-width: 50em) {
    font-size: 1.125rem;
  }
  @media (min-width: 100em) {
    font-size: 1.25rem;
  }
}

body {
  margin: 0;
  min-height: 100vh;
}

main {
  padding-block-start: 2vh;
  padding-block-end: 4vw;
}

.favicon {
  display: inline-block;
  mask: url("./assets/images/favicon.svg") no-repeat center;
  background-color: currentColor;
  min-width: 2.5em;
  min-height: 2.5em;
  margin-inline: 1em;
}

.hero-section-bs {
  background-image: url('./assets/images/hero.webp');
  background-size: cover;
  background-position: center;
  min-height: 60vh;
}

.card-text {
  min-height: 3em;
}
