@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap');

:root {
  --font-sans: 'Montserrat', sans-serif;
  --fw-regular: 400;
  --fw-semibold: 600;
  --fw-extrabold: 800;
  --fs-base: 1rem;
  --lh-base: 1.6;
}

html {
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p,
li,
span,
a,
small {
  font-weight: var(--fw-regular);
}

.navbar-brand {
  font-weight: var(--fw-extrabold);
  font-size: 1.25rem;
}

.navbar-nav .nav-link {
  font-weight: var(--fw-semibold);
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: var(--fw-regular);
}

strong,
b {
  font-weight: var(--fw-semibold);
}

em,
i {
  font-style: italic;
}


.text-center {
  text-align: center;
}

.text-muted {
  color: #666;
}

a {
  color: #D9DADC;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}