/* browser reset settings */
/* all */
@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
*, *:before, *:after{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

/* page */
html{
	font-size: 10px;
	font-family: 'Inter', sans-serif;
}
body{
	position: relative;
	max-width: 100vw;
}

/* blocks page */
header, section, main, div, footer, nav{
	display: flex;
}

/* link */
a{text-decoration: none;}
li{list-style: none;}

/* form */
input, button, textarea, select{
	background: transparent;
	outline: none;
	border: none;
}
textarea{resize: none;}

/* text */
h1{font-size: 4.4rem;}
h2{font-size: 3.6rem;}
h3{font-size: 2.4rem;}
h4{font-size: 2rem;}
p{font-size: 1.6rem;}
h1, h2, h3, h4, p{
	cursor: default;
}

/* image */
img{
	max-width: 100%;
	object-fit: contain;
}

/* screen */
@media screen and (max-width: 768px){
	html{
		font-size: 8px;
	}
}
@media screen and (max-width: 425px){
	html{
		font-size: 6px;
	}
}