@font-face {
  font-family: "Roboto";
  src: local("Roboto"),
    url(./fonts/Roboto/Roboto-Regular.ttf) format("truetype");
}

/* Font size for screen shots */
/* html {
  font-size: 26px;
} */

:root {
  touch-action: pan-x pan-y;
  height: 100%;
}

body {
  /* padding: 60px 0 0 0; */
  /* padding: env(safe-area-inset-top) 0 0 0; */
  padding: 0;
  box-sizing: border-box;
  background-color: #ffffff;
  min-height: calc(var(--vh) * 100);
  height: calc(var(--vh) * 100);
  max-height: calc(var(--vh) * 100);
  min-width: 100vw;
  width: 100vw;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto";
  color: #333333;
  font-size: 1rem;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */

  /* For now we want to do this. */
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
::-webkit-scrollbar {
  display: none;
}

/* From - https://www.w3schools.com/howto/howto_css_disable_text_selection.asp */
.prevent-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
