/** global.css - Global style */

:root {
	--bg: #f5f8f9;
	--be-green: #58a618;
	--blue: #172d43;
	--grey-light: #ececec;
}

*,
*:before,
*:after { 
	box-sizing: border-box;
	user-select: none;
}

::selection {
	color: var(--bg);
	background-color: var(--blue); 
}

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

body {
	background-color: var(--bg);
	color: var(--blue);
	margin: 0;
	font-size: 16px;
	overflow: hidden;
}

input, button, select, textarea {
	font-family: inherit;
	font-size: inherit;
	outline: none;
}