@import url("./variables.css");

/* GLOBAL RESET */
*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 62.5%; /* 10px for easy REM sizing */
}

body {
	font-family: "Roboto", sans-serif;
	/* font-family: Arial, Helvetica, sans-serif; */
	line-height: 1.4;
	font-weight: 400;
	background-color: var(--whitebg);
	color: var(--black-text);
}

body::-webkit-scrollbar {
	width: 8px;
}

body::-webkit-scrollbar-track {
	background-color: var(--whitebg);
}

body::-webkit-scrollbar-thumb {
	background-color: var(--blackbg);
	border-radius: 1rem;
}

a {
	text-decoration: none;
	color: inherit;
}

li {
	list-style: none;
}

a:active,
a:visited {
	color: inherit;
}

input:focus {
	outline: none;
}

textarea:focus {
	outline: none;
}

button:focus {
	outline: none;
}
