/* Base styles - Reset, typography, colors */

/* Global Color Variables */
:root {
	--primary-color: #F99B27;
	--primary-color-rgba: rgba(249, 155, 39, 0.6);
	--primary-color-dark: #E88A1A;
	--primary-color-checkbox: #1976D2;
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	font-family: "Inter", "sans-serif";
}

* {
	box-sizing: border-box;
}
