@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
*, *:before, *:after{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	font-family: Montserrat, sans-serif;
	font-size: 10px;
}
body{
	max-width: 100vw;
	position: relative;
}
section, header, hgroup, footer, main, nav, aside, article, div{
	display: flex;
}
button, input, select{
	background: transparent;
	border: none;
	outline: none;
}
button, select{
	cursor: pointer;
}
img{
	max-width: 100%;
}
h1, h2, h3, h4, h5, h6, p{
	font-family: Montserrat;
	cursor: default;
}
a{
	text-decoration: none;
}
:root{
	--white: #FFFFFF;
	--black: #4D4D4D;
	--blue: #0085FF;
	--orange: #FFA800;
	--padding: 5rem;
}

/* media */
@media (max-width: 467px) {
	html{
		font-size: 5px;
	}
}
@media (max-width: 767px) {
	html{
		font-size: 7px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	html{
		font-size: 7px;
	}
}
@media (min-width: 991px) and (max-width: 1199px) {
	html{
		font-size: 8px;
	}
}