html, body {
	width: 100%;
	height: 100%;
  	margin: 0px;
  	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

html {	
	flex-direction: column;
}

body {
	flex-direction: row;
	overflow: hidden;
    touch-action: none;
}

canvas {
	margin: auto;
	display: block;
}

button{
	border: none;
	color: rgba(255, 255, 255, 0.7);
	background-color: rgba(0, 0, 0, 0);
	outline: none;
	text-align: left;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	font-family: nunito;
	letter-spacing: 1.1px;
}

.selected{
	border: 1px;
	border-color: white;
	border-style: dotted;
}

* {
  -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;
}

@font-face {
	font-family: nunito;
	src: url("Nunito-Light.ttf");
}

.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
  

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(15px, 0px); }
    100%   { transform: translate(-0px, 0px); }    
}