html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
background: white;
overflow: hidden;
box-sizing: border-box;
text-rendering: optimizeLegibility;
font-family: 'Roboto', sans-serif;
font-size: 36px;
font-weight: 900;
}
#scene {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
svg {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}