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

:root {
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  font-family: var(--font-body);
  font-feature-settings: 'liga' 1, 'calt' 1;
}

h1, h2, h3, .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}
/* This overrides the color for all states, does not adjust the palette */
.btn-primary, .btn-primary:visited {
  background-color: #003366 !important;
  border-color:  #003366 !important;
  font: 1px;
}
.btn-primary:hover, .btn-primary:active {
  background-color: #1a4775 !important;
  border-color: #1a4775 !important;
}
