a {
    color: #eee;
    text-decoration: none
}

a:hover {
    color: blue;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
	justify-content: center;
	align-items: center;
}

html {	
	flex-direction: column;
}

body {
	flex-direction: row;
	overflow: hidden;
    touch-action: none;
	background: black;
}

#jeeFaceFilterCanvas {
    z-index: 10;
    position: absolute; 
    width: 100%; height: 100%;
    top: 0px; left: 0px;
    transform: rotateY(180deg);
    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;
  }