html, body {
	width: 100%;
	height: 100%;
  	margin: 0px;
  	padding: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
}

html {	
	flex-direction: column;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

canvas {
  max-width: 100vw;
  max-height: 100vh;
  object-fit:contain;
  position:absolute;
  margin:auto; 
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgb(255, 255, 255);
  -webkit-touch-callout: none;
}

#root {
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#wrapper {
  overflow: hidden;
  display: none;
  width: 100%;
}

#text {
  padding: 0.5em 2em;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 4px;
}

#button {
  padding: 0.3em 1.2em;
  border: 1px solid #000000;
  margin-top: 0.3em;
  border-radius: 2px;
  color: #000000;
  cursor: pointer;
}


#STYLE {
  font-family: 'Space Mono', monospace;
}

outside {
  margin: 3rem 0 0 3rem;
  background: rgb(255, 255, 255);
  height:100vh;
  width: 100wh;
}