*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	scrollbar-width: thin;
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: transparent;
}
html{
	font-size: 12px;
	height: 100%;
	overflow-x: hidden;
}
body{
	min-height: 100%;
	display: flex;
	flex-direction: column;
	font-family: var(--firstFont);
	background: #F5F1E8;
	color: #815532;
}
li {
	list-style: none;
}

a{
	color: inherit;
	text-decoration: none;
}
ul{
	list-style-type: none;
}
button, input{
	border:none;
	background: none;
}
button:focus, input:focus{
	outline:none;
}
#root{
	flex: 1;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 375px;
	margin-left: auto;
	margin-right: auto;
}
