html, body {
	width: 100%;
	height: 100%;
  	margin: 0px;
  	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
    font-family: Verdana, Helvetica, sans-serif;
    overflow: auto;

}

html {	
	flex-direction: column;
}

body {
	flex-direction: row;
	overflow: auto;
    touch-action: none;
	background: black;
}

canvas {
	margin: auto;
	display: block;
}


* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.center{
 			margin-left: auto;
 			margin-right: auto;
  			text-align:center;
		} 

#tess {
    border: 1px solid white;              
}

a, p, h1, h2, h3, h4, h5, h6 {
    color: white;
}

a:link {
  text-decoration: none;
}

/* visited link */
a:visited {
  text-decoration: none;
}

/* mouse over link */
a:hover {
  text-decoration: underline;
}

/* selected link */
a:active {
  text-decoration: underline;
}