*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
	font-size: auto;
}

body {
	color: #333;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	overflow: hidden;
}

input, textarea{
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-size: 1rem;
}

.landscape{
	display: none !important;
}

.portrait{
	display: block !important;
}

img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
	pointer-events: none;
}

@media screen and (orientation:landscape){
	html, body {
		font-size: .65vw;
	}
	.landscape{
		display: block !important;
	}
	.portrait{
		display: none !important;
	}
}

select, input{
	font-size: 1em;
}