*, *::before, *::after{
	box-sizing: border-box;
}
html{
	font-size: 10px;
}
body{
	margin: 0;
	padding: 0;
	line-height: 1;
}
h1, h2, h3, h4, h5, h6{
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
	padding: 0;
}
ul, li{
	margin: 0;
	padding: 0;
	list-style: none;
}
a{
	display: inline-block;
	text-decoration: none;
	color: inherit;
}
button{
	font: inherit;
	color: inherit;
	cursor: pointer;
}
button:hover,
button:focus{
	color: red;
}
input{
	font: inherit;
	color: inherit;
}
textarea{
	font: inherit;
	color: inherit;
	resize: none;
}
img{
	display: block;
	width: 100%;
	height: auto;
}

