/* style.css */

*{
	margin: 0;
	padding: 0;
}

html > * {
 -webkit-tap-highlight-color: rgba(0,0,0,0);
 	width: 100%;
	height: 100%;
}

body{
	margin: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

div{
	width: 100%;
	margin: 0 auto;
}

#container{
	width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	user-select: none; /* CSS3 */
	-moz-user-select: none; /* Firefox */
	-webkit-user-select: none; /* Safari AChrome */
	-ms-user-select: none; /* IE10 */
}


#main{
	width: min(1100px, 100%);
	height: min(970px, 100%);
	margin: 0 auto;
}

#cvs1{
	display: block;
	width: 100%;
	height: auto;
	max-width: 1100px;
	margin: 0 auto;
	user-select: none; /* CSS3 */
	-moz-user-select: none; /* Firefox */
	-webkit-user-select: none; /* Safari Chrome */
	-ms-user-select: none; /* IE10 */
}

@media (orientation: landscape) {
	#cvs1{
		max-height: 100dvh;
		width: auto;
		max-width: 100%;
	}
}

#reloadbutton{
	text-align: center;
	margin: 0 auto;
	font-size: 25px;
}
