@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@700&family=Manrope:wght@400;500;800&display=swap');

body {
  font-family: 'Manrope', sans-serif;
}

/* Bootstrap theme colors */
:root {
  --bs-primary: #10303F;
  --bs-primary-rgb: 16, 48, 63;
  --bs-secondary: #3C7C9A;
  --bs-secondary-rgb: 60, 124, 154;
}

/* .btn-primary/.btn-secondary use their own hardcoded shade/tint variables rather than
   --bs-primary/--bs-secondary above, so they need to be reset to match. */
.btn-primary {
  --bs-btn-bg: #10303F;
  --bs-btn-border-color: #10303F;
  --bs-btn-hover-bg: #0E2936;
  --bs-btn-hover-border-color: #0D2632;
  --bs-btn-active-bg: #0D2632;
  --bs-btn-active-border-color: #0C242F;
  --bs-btn-disabled-bg: #10303F;
  --bs-btn-disabled-border-color: #10303F;
  --bs-btn-focus-shadow-rgb: 52, 79, 92;
}

.btn-secondary {
  --bs-btn-bg: #3C7C9A;
  --bs-btn-border-color: #3C7C9A;
  --bs-btn-hover-bg: #336983;
  --bs-btn-hover-border-color: #30637B;
  --bs-btn-active-bg: #30637B;
  --bs-btn-active-border-color: #2D5D74;
  --bs-btn-disabled-bg: #3C7C9A;
  --bs-btn-disabled-border-color: #3C7C9A;
  --bs-btn-focus-shadow-rgb: 89, 144, 169;
}
