@charset "UTF-8";

/* Reset
----------------------------------------------- */
* {
	border:0;
	margin:0;
	outline:0;
	padding:0;
	background:none;
	box-sizing:border-box;
	font:inherit;
	font-family:inherit;
	font-size:100%;
	font-style:inherit;
	font-weight:inherit;
	text-decoration:none;
	vertical-align:baseline;
	list-style: none;
}

/* root
----------------------------------------------- */
:root {
	 font-size: 0.75rem;
}
@media (min-width: 320px) {
	:root {
		font-size: calc(0.75rem + ((1vw - 0.2rem) * 0.5));
	}
}
@media (min-width: 1920px) {
	:root {
		font-size: 1.25rem;
	}
}

/* HTML Form Format
----------------------------------------------- */
input[type=text],
input[type=password],
input[type=date],
textarea,
select,
button {
	padding:0 1rem;
	border:1px solid #ccc;
	font-size:16px;
}
button {
	vertical-align: bottom;
	cursor:pointer;
}


/* Basis Layout
----------------------------------------------- */
#body{
	margin:1rem 2rem;
}
