@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;700');

:root {
  font-size: 15px;
  --bg: #fff;
  --text: #202346;
  --light-grey: #E9E9E9;
  --grey: #d4d4d4;
  --dark-grey: #7D7D7D;
  --brand-blue: #0A79BD;
  --small: 12px;
  --large: 18px; 
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131313;
    --text: #E6E6E6;
    --grey: #7d7d7d;
    --brand-blue: #0A79BD;
  }
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	color: var(--text);
  background: var(--bg);
	margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.2;
}


