/* Базовые переменные */
:root {
	--bg: #fff;
	--accent: #5394fd;
	--accent-light: #5394fd;
	--text: #1A1A1A;
	--muted: #6b617a;
}

html {
	scroll-behavior: smooth;
}

/* Обнуление */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
span,
div {
	font-family: "Poppins", sans-serif !important;
}


body {
	font-family: "Poppins", sans-serif;
	background: #F7F4FB;
	color: var(--text);
}