@import url('https://fonts.googleapis.com/css2?family=Onest:wght@400;500;600;700;900&family=Roboto:wght@400;500;700&display=swap');
@import url('variables.css');

:root {
  --bg-color: #f4f4f6;
  --text-color: #000000;
  --font-primary: 'Onest', sans-serif;
  --font-menu: 'Roboto', sans-serif;
  --color-primary: #007bff; /* Generic primary for now */
  --header-bg: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  /* Default behavior is nothing, explicitly add text-decoration: underline to text links instead */
}

a.text-link:hover {
  text-decoration: underline;
}

[id] {
  scroll-margin-top: 110px;
}
